diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-12-13 15:19:21 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-12-13 15:19:21 -0800 |
| commit | 771039f64d44a60f9691582fe559e26b431bbbe8 (patch) | |
| tree | 1f980dd57b0f3256825f04f101c81ae458a4b424 /flake | |
| parent | update builders configuration (diff) | |
| download | infra-771039f64d44a60f9691582fe559e26b431bbbe8.tar.gz | |
remove abstractions for managing users
Diffstat (limited to '')
| -rw-r--r-- | flake/hosts.nix | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/flake/hosts.nix b/flake/hosts.nix index 2a3f062..88be6dc 100644 --- a/flake/hosts.nix +++ b/flake/hosts.nix @@ -85,13 +85,6 @@ let name: conf: let inherit (conf) system hostconf; - adminUser = { - name = "fcuny"; - userinfo = { - email = "franck@fcuny.net"; - fullName = "Franck Cuny"; - }; - }; in { inherit name; @@ -101,12 +94,10 @@ let inherit system; specialArgs = { hostName = name; - inherit adminUser; inherit self; inherit inputs; }; modules = [ - { inherit adminUser; } { nixpkgs.pkgs = pkgs; nixpkgs.hostPlatform = system; @@ -129,14 +120,6 @@ let name: conf: let inherit (conf) system hostconf; - adminUser = { - name = "fcuny"; - uid = 1000; - userinfo = { - email = "franck@fcuny.net"; - fullName = "Franck Cuny"; - }; - }; in { inherit name; @@ -146,7 +129,6 @@ let inherit system; specialArgs = { hostName = name; - inherit adminUser; inherit self; hostConfigurations = mapAttrs' (name: conf: { inherit name; @@ -155,7 +137,6 @@ let inherit inputs; }; modules = [ - { inherit adminUser; } { system.configurationRevision = mkIf (self ? rev) self.rev; system.nixos.versionSuffix = mkForce "git.${substring 0 11 inputs.nixpkgs.rev}"; |
