diff --git a/devices/server.nix b/devices/server.nix index 54e31d3..2bc116d 100755 --- a/devices/server.nix +++ b/devices/server.nix @@ -27,7 +27,6 @@ let home-manager = { extraSpecialArgs = { - #inherit inputs; xlib = config.xlib; }; }; diff --git a/devices/vds.nix b/devices/vds.nix index 4fe8b83..c8ed011 100755 --- a/devices/vds.nix +++ b/devices/vds.nix @@ -2,9 +2,9 @@ let nixosModule = { - modulesPath, config, lib, + modulesPath, pkgs, ... }: @@ -29,6 +29,12 @@ let ] ++ builtins.attrValues inputs.self.nixosModules.vds; + home-manager = { + extraSpecialArgs = { + xlib = config.xlib; + }; + }; + boot = { kernelPackages = pkgs.linuxPackages_xanmod_stable; hardwareScan = true; diff --git a/devices/wsl.nix b/devices/wsl.nix index 9043c6a..f26fb7d 100755 --- a/devices/wsl.nix +++ b/devices/wsl.nix @@ -29,7 +29,6 @@ let home-manager = { extraSpecialArgs = { - #inherit inputs; xlib = config.xlib; }; };