29 lines
473 B
Nix
29 lines
473 B
Nix
{
|
|
profile,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../../profiles/${profile}
|
|
../../modules/core
|
|
../../modules/options
|
|
|
|
./hardware.nix
|
|
./host-packages.nix
|
|
];
|
|
|
|
modules.hyprland = {
|
|
enable = true;
|
|
terminal = "kitty";
|
|
monitor = [
|
|
",preferred,auto,1"
|
|
];
|
|
};
|
|
modules.plasma.enable = false;
|
|
modules.displayManager.displayManager = "gdm";
|
|
|
|
modules.zsh.enable = true;
|
|
modules.shell.defaultShell = "zsh";
|
|
|
|
modules.pipewire.enable = true;
|
|
} |