diff --git a/flake.lock b/flake.lock index 31595f3..21a7a9a 100644 --- a/flake.lock +++ b/flake.lock @@ -23,11 +23,11 @@ ] }, "locked": { - "lastModified": 1718788307, - "narHash": "sha256-SqiOz0sljM0GjyQEVinPXQxaGcbOXw5OgpCWGPgh/vo=", + "lastModified": 1718983978, + "narHash": "sha256-lp6stESwTLBZUQ5GBivxwNehShmBp4jqeX/1xahM61w=", "owner": "nix-community", "repo": "home-manager", - "rev": "d7830d05421d0ced83a0f007900898bdcaf2a2ca", + "rev": "c559542f0aa87971a7f4c1b3478fe33cc904b902", "type": "github" }, "original": { @@ -262,11 +262,11 @@ }, "nur": { "locked": { - "lastModified": 1718992251, - "narHash": "sha256-wHPXfpeleFtZZx4T/QJP4QDvVxjHE2sGmd+EDXBlWug=", + "lastModified": 1719006380, + "narHash": "sha256-87Yuu24pf0osnyyXOzlk1dufTCSMeZle/rD1NOvYCbY=", "owner": "nix-community", "repo": "NUR", - "rev": "ec879287be7dbca645a82a9d9dfbd206835f3736", + "rev": "2a39f58d0ab57e6f77a187b08671250a7b893f68", "type": "github" }, "original": { diff --git a/hosts/Aloria/default.nix b/hosts/Aloria/default.nix index ee348e1..0b1c83a 100644 --- a/hosts/Aloria/default.nix +++ b/hosts/Aloria/default.nix @@ -5,7 +5,7 @@ (import ../Common/nvidia.nix { inherit inputs pkgs config; }) (import ../Common/desktop.nix { inherit inputs pkgs config; }) ]; - hardware.opengl.extraPackages = [ + hardware.graphics.extraPackages = [ pkgs.intel-compute-runtime pkgs.intel-media-driver ]; diff --git a/hosts/Common/default.nix b/hosts/Common/default.nix index c15fb13..662fe9b 100644 --- a/hosts/Common/default.nix +++ b/hosts/Common/default.nix @@ -57,18 +57,18 @@ }; fileSystems."/home/user/Workspace" = { device = "/home/server/Workspace"; - options = [ "bind" ]; + options = [ "bind" "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" ]; }; fileSystems."/home/user/Documents" = { device = "/home/server/Storage/Thomas/Documents"; - options = [ "bind" ]; + options = [ "bind" "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" ]; }; fileSystems."/home/user/Pictures" = { device = "/home/server/Storage/Thomas/Pictures"; - options = [ "bind" ]; + options = [ "bind" "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" ]; }; fileSystems."/home/user/Videos" = { device = "/home/server/Storage/Thomas/Videos"; - options = [ "bind" ]; + options = [ "bind" "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" ]; }; } diff --git a/hosts/Common/desktop.nix b/hosts/Common/desktop.nix index 1bb1f31..9a0d9f4 100644 --- a/hosts/Common/desktop.nix +++ b/hosts/Common/desktop.nix @@ -2,7 +2,7 @@ { services.udev.packages = [ pkgs.yubikey-personalization ]; - hardware.opengl = { + hardware.graphics = { enable = true; };