This commit is contained in:
Nathan McCarty 2023-07-03 20:12:19 -04:00
parent fbefd0e81b
commit a34134d4b0
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
3 changed files with 6 additions and 4 deletions

View File

@ -58,9 +58,7 @@ in {
docker = false; docker = false;
podman = true; podman = true;
}; };
windows = { windows = { enable = false; };
enable = false;
};
}; };
}; };
# Configure networking # Configure networking

View File

@ -53,18 +53,22 @@
fileSystems."/home/nathan/Music" = { fileSystems."/home/nathan/Music" = {
device = "10.0.0.139:/mnt/tank/root/nathan/music"; device = "10.0.0.139:/mnt/tank/root/nathan/music";
fsType = "nfs"; fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
}; };
fileSystems."/mnt/general" = { fileSystems."/mnt/general" = {
device = "10.0.0.139:/mnt/tank/root/shares/general"; device = "10.0.0.139:/mnt/tank/root/shares/general";
fsType = "nfs"; fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
}; };
fileSystems."/mnt/archive" = { fileSystems."/mnt/archive" = {
device = "10.0.0.139:/mnt/tank/root/shares/archive"; device = "10.0.0.139:/mnt/tank/root/shares/archive";
fsType = "nfs"; fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
}; };
fileSystems."/mnt/books" = { fileSystems."/mnt/books" = {
device = "10.0.0.139:/mnt/tank/root/data/books"; device = "10.0.0.139:/mnt/tank/root/data/books";
fsType = "nfs"; fsType = "nfs";
options = [ "x-systemd.automount" "noauto" ];
}; };
swapDevices = [{ swapDevices = [{

View File

@ -23,7 +23,7 @@ in with lib; {
# Turn on GDM for login # Turn on GDM for login
services.xserver = { services.xserver = {
enable = true; enable = true;
autorun = true; autorun = false;
# Enable plasma for the applications # Enable plasma for the applications
desktopManager.plasma5.enable = true; desktopManager.plasma5.enable = true;
displayManager.defaultSession = "hyprland"; displayManager.defaultSession = "hyprland";