llynx: specs
This commit is contained in:
parent
c77271a74d
commit
2472cc0a15
2 changed files with 18 additions and 3 deletions
hosts/llynx
|
@ -9,6 +9,13 @@
|
||||||
inputs.nixos-apple-silicon.nixosModules.default
|
inputs.nixos-apple-silicon.nixosModules.default
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
../../modules
|
../../modules
|
||||||
|
|
||||||
|
# Default specialisation
|
||||||
|
({ lib, config, ... }: {
|
||||||
|
config = lib.mkIf (config.specialisation != { }) {
|
||||||
|
snowhawk.hyprland.enable = true;
|
||||||
|
};
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
snowhawk = {
|
snowhawk = {
|
||||||
|
@ -21,9 +28,16 @@
|
||||||
power-button.enable = false;
|
power-button.enable = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.xserver.enable = true;
|
specialisation = {
|
||||||
services.displayManager.sddm.enable = true;
|
plasma.configuration = {
|
||||||
services.desktopManager.plasma6.enable = true;
|
environment.etc."specialisation".text = "plasma";
|
||||||
|
|
||||||
|
services.xserver.enable = true;
|
||||||
|
services.displayManager.sddm.enable = true;
|
||||||
|
services.desktopManager.plasma6.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
documentation = {
|
documentation = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
# Desktop
|
# Desktop
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
kitty.enable = true;
|
kitty.enable = true;
|
||||||
|
theme.enable = true;
|
||||||
sops.enable = true;
|
sops.enable = true;
|
||||||
|
|
||||||
# Term Tools
|
# Term Tools
|
||||||
|
|
Loading…
Reference in a new issue