diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-04-12 19:45:00 +0200 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-04-12 19:45:00 +0200 |
| commit | c920d3592101f958cedcca09f547126750461d3f (patch) | |
| tree | 9f06f76a52e72f40a79bb2a5e58e869cc0ca6594 /nixos/desktop/default.nix | |
| parent | f65944871a9153a78f27b9d1a62bc77023067c22 (diff) | |
update nixos
Diffstat (limited to '')
| -rw-r--r-- | nixos/desktop/default.nix | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/nixos/desktop/default.nix b/nixos/desktop/default.nix index a634618..f54acb8 100644 --- a/nixos/desktop/default.nix +++ b/nixos/desktop/default.nix @@ -3,7 +3,7 @@ { imports = [ ./apps.nix - ./xfce.nix + ./xfce.nix ./hyprland.nix ]; @@ -33,11 +33,12 @@ pulse.enable = true; }; - displayManager.sddm = { - enable=true; - wayland.enable = true; - #theme = "catppuccin-mocha"; - }; + displayManager.sddm = { + enable=true; + wayland.enable = true; + #theme = "catppuccin-mocha"; + }; + xserver = { enable = true; excludePackages = with pkgs; [ @@ -46,9 +47,10 @@ }; }; - fonts.packages = with pkgs; [ + fonts.packages = with pkgs; [ noto-fonts font-awesome (nerdfonts.override {fonts = [ "Hermit" ]; }) + ]; } |
