Fri Jun 21 11:59:00 PM CEST 2024

This commit is contained in:
Thomas Avé 2024-06-21 23:59:00 +02:00
parent 1e1454c947
commit 50e73789fa
4 changed files with 12 additions and 12 deletions

View File

@ -23,11 +23,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1718788307, "lastModified": 1718983978,
"narHash": "sha256-SqiOz0sljM0GjyQEVinPXQxaGcbOXw5OgpCWGPgh/vo=", "narHash": "sha256-lp6stESwTLBZUQ5GBivxwNehShmBp4jqeX/1xahM61w=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "d7830d05421d0ced83a0f007900898bdcaf2a2ca", "rev": "c559542f0aa87971a7f4c1b3478fe33cc904b902",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -262,11 +262,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1718992251, "lastModified": 1719006380,
"narHash": "sha256-wHPXfpeleFtZZx4T/QJP4QDvVxjHE2sGmd+EDXBlWug=", "narHash": "sha256-87Yuu24pf0osnyyXOzlk1dufTCSMeZle/rD1NOvYCbY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "ec879287be7dbca645a82a9d9dfbd206835f3736", "rev": "2a39f58d0ab57e6f77a187b08671250a7b893f68",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -5,7 +5,7 @@
(import ../Common/nvidia.nix { inherit inputs pkgs config; }) (import ../Common/nvidia.nix { inherit inputs pkgs config; })
(import ../Common/desktop.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-compute-runtime
pkgs.intel-media-driver pkgs.intel-media-driver
]; ];

View File

@ -57,18 +57,18 @@
}; };
fileSystems."/home/user/Workspace" = { fileSystems."/home/user/Workspace" = {
device = "/home/server/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" = { fileSystems."/home/user/Documents" = {
device = "/home/server/Storage/Thomas/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" = { fileSystems."/home/user/Pictures" = {
device = "/home/server/Storage/Thomas/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" = { fileSystems."/home/user/Videos" = {
device = "/home/server/Storage/Thomas/Videos"; device = "/home/server/Storage/Thomas/Videos";
options = [ "bind" ]; options = [ "bind" "x-systemd.automount" "x-systemd.mount-timeout=1" "_netdev" "noauto" "timeo=1" ];
}; };
} }

View File

@ -2,7 +2,7 @@
{ {
services.udev.packages = [ pkgs.yubikey-personalization ]; services.udev.packages = [ pkgs.yubikey-personalization ];
hardware.opengl = { hardware.graphics = {
enable = true; enable = true;
}; };