diff options
-rw-r--r-- | users/glittershark/system/system/machines/roswell.nix | 4 | ||||
-rw-r--r-- | users/glittershark/system/system/machines/yeren.nix | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/users/glittershark/system/system/machines/roswell.nix b/users/glittershark/system/system/machines/roswell.nix index c0ed2264a0e0..4b0cdec95d18 100644 --- a/users/glittershark/system/system/machines/roswell.nix +++ b/users/glittershark/system/system/machines/roswell.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, modulesPath, ... }: +{ depot, config, lib, pkgs, modulesPath, ... }: { imports = [ @@ -12,6 +12,6 @@ networking.hostName = "roswell"; users.users.grfn.openssh.authorizedKeys.keys = [ - config.depot.users.glittershark.keys.main + depot.users.glittershark.keys.main ]; } diff --git a/users/glittershark/system/system/machines/yeren.nix b/users/glittershark/system/system/machines/yeren.nix index 0237f71410ef..a8f7df5dc512 100644 --- a/users/glittershark/system/system/machines/yeren.nix +++ b/users/glittershark/system/system/machines/yeren.nix @@ -1,4 +1,4 @@ -{ modulesPath, config, lib, pkgs, ... }: +{ depot, modulesPath, config, lib, pkgs, ... }: { imports = [ @@ -86,12 +86,12 @@ # the fprintd module hardcodes pkgs.fprintd :'( nixpkgs.overlays = [(_: _: { - fprintd = config.depot.users.glittershark.pkgs.fprintd; + fprintd = depot.users.glittershark.pkgs.fprintd; })]; services.fprintd = { enable = true; - package = config.depot.users.glittershark.pkgs.fprintd; + package = depot.users.glittershark.pkgs.fprintd; }; security.pam.loginLimits = [ |