summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2024-04-08 21:56:30 +0200
committerstuebinm2024-04-08 21:56:30 +0200
commitfeeaae7f70e600f3fe027e0afb45c02b0bb3b91e (patch)
treec46325ad10e80d1d3b706d887a05fe0cf34d2b89
parent25c25e12c9a8edebdace345754b98437d129a7d9 (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.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index b2c73df..e984866 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;