Files
system-config/system/hosts/sirius-a/default.nix

19 lines
251 B
Nix

{ ... }:
{
imports = [
./configuration.nix
../../authorized-keys.nix
../../features/gc.nix
];
nixpkgs.config.allowUnfree = true;
home-manager.users.drew =
{ ... }:
{
imports = [
./drew.nix
];
};
}