move xorg stuff to de-twm

This commit is contained in:
datsudo 2025-06-02 22:27:58 +08:00
parent 5d62aea9ae
commit 471bcb8d7f
2 changed files with 7 additions and 11 deletions

View File

@ -116,17 +116,11 @@
ffmpeg ffmpegthumbnailer p7zip rar unrar zip unzip dig nix-du
nh graphviz libnotify drawing wmctrl
#### X11 stuff
xorg.xev xorg.xinit xtitle xwinmosaic xdo xdotool xsel xclip
simplescreenrecorder gpick # stuff that will ONLY work in X
inputs.zen-browser.packages.${pkgs.system}.default
];
### DESKTOP
deWm.cinnamon.enable = true;
deWm.xfce.enable = true;
### ENV
environment.variables = {
EDITOR = "nvim";

View File

@ -24,13 +24,15 @@ in
};
};
environment.systemPackages = with pkgs; [
xorg.xev xorg.xinit xtitle xwinmosaic xdo xdotool xsel xclip
] ++ lib.optionals cfg.xfce.enable [
xfce.gigolo xfce.xfce4-dict xfce.xfce4-panel xfce.xfce4-pulseaudio-plugin
xfce.xfce4-whiskermenu-plugin xfce.mousepad xfce.xfwm4-themes xfce.xfce4-netload-plugin
];
environment.xfce.excludePackages = with pkgs.xfce; mkIf cfg.xfce.enable [
xfce4-appfinder xfce4-taskmanager xfce4-terminal
];
environment.systemPackages = with pkgs.xfce; mkIf cfg.xfce.enable [
gigolo xfce4-dict xfce4-panel xfce4-pulseaudio-plugin
xfce4-whiskermenu-plugin mousepad xfwm4-themes xfce4-netload-plugin
];
};
}