mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 19:24:03 -06:00
Move files
This commit is contained in:
parent
910b84667f
commit
6e79433ebc
4 changed files with 0 additions and 0 deletions
26
desktops/gnome.nix
Normal file
26
desktops/gnome.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# GNOME
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.gdm.enable = true;
|
||||
desktopManager.gnome.enable = true;
|
||||
};
|
||||
|
||||
# Add GNOME packages
|
||||
environment.systemPackages = [
|
||||
pkgs.amberol
|
||||
];
|
||||
|
||||
# Remove GNOME packages
|
||||
environment.gnome.excludePackages = (with pkgs; [
|
||||
gnome-photos
|
||||
gnome-tour
|
||||
epiphany # web browser
|
||||
]);
|
||||
|
||||
# Services
|
||||
services.udev.packages = with pkgs; [ gnome.gnome-settings-daemon ];
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue