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;
podman = true;
};
windows = {
enable = false;
};
windows = { enable = false; };
};
};
# Configure networking

View File

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

View File

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