nixos/hosts/vm/default.nix

19 lines
270 B
Nix

{
profile,
...
}:
{
imports = [
../../profiles/${profile}
../../modules/core
../../modules/options
./hardware.nix
./host-packages.nix
];
modules.hyprland.enable = true;
modules.zsh.enable = true;
modules.shell.defaultShell = "zsh";
}