mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 21:34:38 -05:00
feat: init
This commit is contained in:
commit
c19ea940bd
320 changed files with 23845 additions and 0 deletions
51
nixos/modules/gnome.nix
Executable file
51
nixos/modules/gnome.nix
Executable file
|
@ -0,0 +1,51 @@
|
|||
{pkgs, ...}: {
|
||||
services = {
|
||||
xserver = {
|
||||
enable = true;
|
||||
displayManager = {
|
||||
gdm.enable = true;
|
||||
gdm.wayland = true;
|
||||
};
|
||||
desktopManager.gnome = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
gnome = {
|
||||
games.enable = false;
|
||||
gnome-online-accounts.enable = true;
|
||||
};
|
||||
udev.packages = with pkgs; [
|
||||
gnome.gnome-settings-daemon
|
||||
];
|
||||
};
|
||||
environment = {
|
||||
variables = {
|
||||
# WEBKIT_FORCE_SANDBOX = "0";
|
||||
# WEBKIT_DISABLE_COMPOSITING_MODE = "1";
|
||||
};
|
||||
gnome.excludePackages =
|
||||
(with pkgs; [
|
||||
gnome-photos
|
||||
gnome-tour
|
||||
epiphany # web browser
|
||||
cheese # webcam tool
|
||||
geary # email reader
|
||||
evince # document viewer
|
||||
totem # video player
|
||||
yelp # help viewer
|
||||
gnome-calendar
|
||||
])
|
||||
++ (with pkgs.gnome; [
|
||||
gnome-music
|
||||
tali # poker game
|
||||
iagno # go game
|
||||
hitori # sudoku game
|
||||
atomix # puzzle game
|
||||
gnome-clocks
|
||||
gnome-weather
|
||||
gnome-maps
|
||||
gnome-contacts
|
||||
gnome-characters
|
||||
]);
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue