summaryrefslogtreecommitdiff
path: root/nixos/desktop/default.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-08-17 11:25:33 +0200
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-08-17 11:25:33 +0200
commit1be972048dd58218cd689ecb5cac562eb398b751 (patch)
tree203f19ee01ad5fe28f2868e8c1451f9538e4ab12 /nixos/desktop/default.nix
parent3cd59d4670711e34a50adea912c3b0894883e490 (diff)
refreshed config
Diffstat (limited to 'nixos/desktop/default.nix')
-rw-r--r--nixos/desktop/default.nix67
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
- ];
-}