Anthony Rodriguez
8fe0604299
Refactored the entire repository structure, as putting everything into modules was just awkward. Took heavy inspiration from fufexan's repository, fufexan/dotfiles, as the structure felt much saner.
39 lines
729 B
Nix
39 lines
729 B
Nix
{pkgs, ...}: {
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager.gdm.enable = true;
|
|
desktopManager.gnome = {
|
|
enable = true;
|
|
extraGSettingsOverridePackages = [pkgs.mutter];
|
|
extraGSettingsOverrides = ''
|
|
[org.gnome.mutter]
|
|
experimental-features=['scale-monitor-framebuffer']
|
|
'';
|
|
};
|
|
};
|
|
|
|
environment.gnome.excludePackages = with pkgs; [
|
|
gnome-console
|
|
gnome-photos
|
|
gnome-tour
|
|
gnome-software
|
|
iagno
|
|
hitori
|
|
atomix
|
|
gnome-contacts
|
|
gnome-initial-setup
|
|
gnome-music
|
|
gedit
|
|
cheese
|
|
tali
|
|
epiphany
|
|
geary
|
|
yelp
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gnome-tweaks
|
|
gnome-power-manager
|
|
rhythmbox
|
|
];
|
|
}
|