19 lines
257 B
Nix
19 lines
257 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib; let
|
|
psCfg = config.pub-solar;
|
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
|
in {
|
|
imports = [
|
|
./configuration.nix
|
|
];
|
|
|
|
config = {
|
|
nixpkgs.crossSystem.system = "aarch64-linux";
|
|
};
|
|
}
|