tweak
This commit is contained in:
parent
fbefd0e81b
commit
a34134d4b0
|
@ -58,9 +58,7 @@ in {
|
||||||
docker = false;
|
docker = false;
|
||||||
podman = true;
|
podman = true;
|
||||||
};
|
};
|
||||||
windows = {
|
windows = { enable = false; };
|
||||||
enable = false;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
# Configure networking
|
# Configure networking
|
||||||
|
|
|
@ -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 = [{
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Reference in New Issue