diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-29 23:09:38 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-29 23:09:38 +0100 |
| commit | 2e37bf1533ace5b2d4d50196300133d9e72d2952 (patch) | |
| tree | 0c06f4f03599933bb3d0e31620203287ca67c7c0 /nixos/desktop/default.nix | |
| parent | 2418424adabca0a1616cca4920221cd67149b65a (diff) | |
flakes update feat. xfce
Diffstat (limited to 'nixos/desktop/default.nix')
| -rw-r--r-- | nixos/desktop/default.nix | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/nixos/desktop/default.nix b/nixos/desktop/default.nix new file mode 100644 index 0000000..a634618 --- /dev/null +++ b/nixos/desktop/default.nix @@ -0,0 +1,54 @@ + +{pkgs, ...}: +{ + imports = [ + ./apps.nix + ./xfce.nix + ./hyprland.nix + ]; + + programs = { + dconf.enable = true; + thunar = { + enable = true; + plugins = with pkgs.xfce; [ + thunar-archive-plugin + thunar-media-tags-plugin + thunar-volman + ]; + }; + }; + # Enable CUPS to print documents. + services.printing.enable = true; + + + # Enable touchpad support (enabled default in most desktopManager). + services.libinput.enable = true; + + services = { + blueman.enable = true; + # Enable sound + pipewire = { + enable = true; + pulse.enable = true; + }; + + displayManager.sddm = { + enable=true; + wayland.enable = true; + #theme = "catppuccin-mocha"; + }; + xserver = { + enable = true; + excludePackages = with pkgs; [ + xterm + ]; + }; + }; + + fonts.packages = with pkgs; [ + noto-fonts + font-awesome + (nerdfonts.override {fonts = [ "Hermit" ]; }) + ]; +} |
