2023-03-07 15:48:46 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
2022-08-21 22:53:04 +00:00
|
|
|
psCfg = config.pub-solar;
|
|
|
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
2023-03-07 15:48:46 +00:00
|
|
|
in {
|
2022-08-21 22:53:04 +00:00
|
|
|
imports = [
|
|
|
|
./configuration.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
config = {
|
2023-01-28 21:30:37 +00:00
|
|
|
nixpkgs.crossSystem.system = "aarch64-linux";
|
2022-08-21 22:53:04 +00:00
|
|
|
};
|
|
|
|
}
|