diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-08-17 11:25:33 +0200 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-08-17 11:25:33 +0200 |
| commit | 1be972048dd58218cd689ecb5cac562eb398b751 (patch) | |
| tree | 203f19ee01ad5fe28f2868e8c1451f9538e4ab12 /nixos/desktop/default.nix | |
| parent | 3cd59d4670711e34a50adea912c3b0894883e490 (diff) | |
refreshed config
Diffstat (limited to '')
| -rw-r--r-- | nixos/desktop/default.nix | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/nixos/desktop/default.nix b/nixos/desktop/default.nix deleted file mode 100644 index b987376..0000000 --- a/nixos/desktop/default.nix +++ /dev/null @@ -1,67 +0,0 @@ - -{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 - ]; - }; - }; - - i18n.inputMethod = { - type = "fcitx5"; - enable = true; - fcitx5.addons = with pkgs; [ - fcitx5-gtk - fcitx5-lua - fcitx5-mozc - catppuccin-fcitx5 - fcitx5-table-other - ]; - }; - - fonts.packages = with pkgs; [ - noto-fonts - font-awesome - nerd-fonts.hurmit - ]; -} |
