Files
system-config/system/hosts/vega/default.nix
2025-04-25 15:24:33 -07:00

21 lines
311 B
Nix

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