summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2024-05-18 09:40:58 +0200
committerSilas Schöffel <sils@sils.li>2024-05-18 09:40:58 +0200
commit801d189a5b22c7eb0868fa69d6336736264a814f (patch)
treedb8a50a8348962cbe9c5f5eb43b7944d6f19a0cd
parentflake: factor outputs in separate file (diff)
downloadnix-config-801d189a5b22c7eb0868fa69d6336736264a814f.zip
flake: remove unused args to outputs
-rw-r--r--flake.nix21
1 files changed, 3 insertions, 18 deletions
diff --git a/flake.nix b/flake.nix
index ffc240b..9ceeda8 100644
--- a/flake.nix
+++ b/flake.nix
@@ -165,30 +165,15 @@
flake = false;
};
};
- #}}}
outputs = {
- self,
- base16-tokyo-night-scheme,
- nixpkgs,
- nixpkgs-pinned,
- home-manager,
- prismlauncher,
- lanzaboote,
- nixvim,
- impermanence,
- wl-togglescreens,
- stylix,
- sops-nix,
flake-parts,
- agenix,
- ragenix,
- git-hooks,
- arkenfox-user-js,
systems,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = import systems;
- imports = [./flake];
+ imports = [
+ ./flake
+ ];
};
}