os/hosts/companion/companion.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
257 B
Nix
Raw Normal View History

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
};
}