nixos/modules/gnome/default.nix

41 lines
1.0 KiB
Nix
Raw Normal View History

{ custom }: { pkgs, ... }:
{
services.switcherooControl.enable = true;
2023-02-14 20:55:51 +01:00
services.udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
services.xserver.desktopManager.gnome.enable = true;
2023-02-14 20:33:59 +01:00
environment = {
systemPackages = with pkgs; [
gnome.gnome-tweaks
2023-02-14 20:55:51 +01:00
gnomeExtensions.appindicator
gnomeExtensions.gtk-title-bar
gnomeExtensions.switcheroo
2023-02-14 20:33:59 +01:00
];
gnome.excludePackages = (with pkgs; [
gnome-console
2023-02-14 20:33:59 +01:00
gnome-text-editor
gnome-tour
]) ++ (with pkgs.gnome; [
atomix # puzzle game
cheese # webcam tool
epiphany # web browser
geary
gedit # text editor
gnome-characters
gnome-clocks
gnome-logs
gnome-maps
gnome-music
gnome-weather
hitori # sudoku game
iagno # go game
tali # poker game
totem # video player
yelp
]);
};
2023-02-23 21:03:57 +01:00
services.touchegg.enable = true;
home-manager.users.${custom.username} = {
home.file.".config/touchegg/touchegg.conf".source = ./touchegg.conf;
};
2023-02-14 20:33:59 +01:00
}