Files
system-config/system/hosts/vega/default.nix

19 lines
258 B
Nix

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