This commit is contained in:
sadan 2025-02-24 00:33:06 -05:00
parent f0f6cd6a54
commit 92c2a27581
No known key found for this signature in database

View file

@ -9,7 +9,8 @@ let
NAME = "meyer"; NAME = "meyer";
in in
{ {
imports = [ imports =
[
(import ../../systemModules/sops.nix { inherit NAME; }) (import ../../systemModules/sops.nix { inherit NAME; })
(import ../../systemModules/networkManager.nix { inherit NAME; }) (import ../../systemModules/networkManager.nix { inherit NAME; })
(import ../../systemModules/docker.nix { inherit NAME; }) (import ../../systemModules/docker.nix { inherit NAME; })
@ -41,14 +42,15 @@ in
inherit inputs stable unstable; inherit inputs stable unstable;
}; };
users = { users = {
"${NAME}" = "${NAME}" = (
{ ... }: { ... }:
{ {
imports = [ imports = [
../docker/vw ../docker/vw
./home.nix ./home.nix
]; ];
}; }
);
}; };
}; };
} }