diff options
author | Silas Schöffel <sils@sils.li> | 2024-05-18 09:40:58 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-05-18 09:40:58 +0200 |
commit | 801d189a5b22c7eb0868fa69d6336736264a814f (patch) | |
tree | db8a50a8348962cbe9c5f5eb43b7944d6f19a0cd /flake.nix | |
parent | flake: factor outputs in separate file (diff) | |
download | nix-config-801d189a5b22c7eb0868fa69d6336736264a814f.tar.gz nix-config-801d189a5b22c7eb0868fa69d6336736264a814f.zip |
flake: remove unused args to outputs
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 21 |
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 + ]; }; } |