nixos: rearrange services

This commit is contained in:
John Bowdre 2023-09-24 20:05:18 -05:00
parent 7e56cf6ecf
commit ff1b0622d1
5 changed files with 15 additions and 16 deletions

View File

@ -0,0 +1,13 @@
{
services.xserver = {
enable = true;
displayManager = {
gdm.enable = true;
};
desktopManager = {
gnome.enable = true;
};
layout = "us";
xkbVariant = "";
};
}

View File

@ -4,14 +4,15 @@
inputs.hardware.nixosModules.common-pc-ssd
./hardware-configuration.nix
./services
../common/global
../common/users/john
../common/optional/docker.nix
../common/optional/gnome.nix
../common/optional/libvirtd.nix
../common/optional/pipewire.nix
../common/optional/printing.nix
../common/optional/sshd.nix
];

View File

@ -1,6 +0,0 @@
{
imports = [
./printing.nix
./xserver.nix
];
}

View File

@ -1,9 +0,0 @@
{
services.xserver = {
enable = true;
displayManager.gdm.enable = true;
desktopManager.gnome.enable = true;
layout = "us";
xkbVariant = "";
};
}