diff options
author | Karel Kočí <cynerd@email.cz> | 2024-03-15 14:28:32 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-03-15 14:28:32 +0100 |
commit | 422ef34e58bc8a187594779d95ef8d74e8332a47 (patch) | |
tree | e286a152a4fbab17ff772f679f2c0d76a6abeb04 /nixos | |
parent | bd98fdfb596689d6bbed8ba8439a674bbd57b73a (diff) | |
download | nixos-personal-422ef34e58bc8a187594779d95ef8d74e8332a47.tar.gz nixos-personal-422ef34e58bc8a187594779d95ef8d74e8332a47.tar.bz2 nixos-personal-422ef34e58bc8a187594779d95ef8d74e8332a47.zip |
Update personal-secret to use nixosModule
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/configurations.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/configurations.nix b/nixos/configurations.nix index 7d9bc3d..0e6a4d5 100644 --- a/nixos/configurations.nix +++ b/nixos/configurations.nix @@ -5,7 +5,7 @@ self: let modules = hostname: [ self.nixosModules.default - (self.inputs.personal-secret.lib.personalSecrets hostname) + self.inputs.personal-secret.nixosModules.default { networking.hostName = hostname; nixpkgs.overlays = [self.overlays.default]; |