diff options
author | stuebinm | 2024-04-08 21:56:30 +0200 |
---|---|---|
committer | stuebinm | 2024-04-08 21:56:30 +0200 |
commit | feeaae7f70e600f3fe027e0afb45c02b0bb3b91e (patch) | |
tree | c46325ad10e80d1d3b706d887a05fe0cf34d2b89 | |
parent | 25c25e12c9a8edebdace345754b98437d129a7d9 (diff) |
meta: extra module docs in `man configuration.nix`
all non-nixos modules I use should have their documentation merged into
the configuration.nix man page I have available on ilex / abbenay, even
for modules not used there.
-rw-r--r-- | flake.nix | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -68,7 +68,9 @@ inputs.nixpkgs.lib.nixosSystem rec { system = "x86_64-linux"; modules = [ config ] ++ imports; - extraModules = builtins.attrValues self.nixosModules; + extraModules = + builtins.attrValues self.nixosModules + ++ [ sops-nix.nixosModules.sops ]; pkgs = nixpkgs; specialArgs = { @@ -79,7 +81,6 @@ mkDesktop = mkConfig [ ./common/desktop.nix ]; mkServer = mkConfig [ ./common/headless.nix - sops-nix.nixosModules.sops ]; deploy-vps = hostname: { inherit hostname; |