diff options
Diffstat (limited to 'nixos/desktop/default.nix')
| -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 - ]; -} |
