2023-05-17 17:10:18 +01:00
|
|
|
{pkgs, ...}: {
|
2023-06-19 06:53:21 +01:00
|
|
|
imports = [./sddm.nix];
|
2023-07-03 14:26:14 +01:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
pavucontrol
|
|
|
|
pamixer
|
|
|
|
pulseaudio
|
|
|
|
flameshot
|
|
|
|
];
|
|
|
|
programs.thunar = {
|
2023-04-10 22:06:23 +01:00
|
|
|
enable = true;
|
2023-07-03 14:26:14 +01:00
|
|
|
plugins = with pkgs.xfce; [
|
|
|
|
thunar-archive-plugin
|
|
|
|
thunar-volman
|
|
|
|
];
|
|
|
|
};
|
|
|
|
services = {
|
|
|
|
xserver = {
|
|
|
|
desktopManager = {
|
|
|
|
xterm.enable = false;
|
2023-07-04 11:33:39 +01:00
|
|
|
xfce.enable = true;
|
2023-04-10 22:06:23 +01:00
|
|
|
};
|
|
|
|
};
|
2023-07-03 14:26:14 +01:00
|
|
|
blueman.enable = true;
|
|
|
|
gvfs.enable = true;
|
|
|
|
tumbler.enable = true;
|
2023-04-10 22:06:23 +01:00
|
|
|
};
|
2023-04-07 09:06:11 +01:00
|
|
|
}
|