diff --git a/machines/levitation/configuration.nix b/machines/levitation/configuration.nix index 4168dd4..687ee0d 100644 --- a/machines/levitation/configuration.nix +++ b/machines/levitation/configuration.nix @@ -58,9 +58,7 @@ in { docker = false; podman = true; }; - windows = { - enable = false; - }; + windows = { enable = false; }; }; }; # Configure networking diff --git a/machines/levitation/hardware.nix b/machines/levitation/hardware.nix index 39e85dc..14677e4 100644 --- a/machines/levitation/hardware.nix +++ b/machines/levitation/hardware.nix @@ -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 = [{ diff --git a/modules/linux/hyprland.nix b/modules/linux/hyprland.nix index aac118a..aaf8d24 100644 --- a/modules/linux/hyprland.nix +++ b/modules/linux/hyprland.nix @@ -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";