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