diff options
author | Soispha <soispha@vhack.eu> | 2023-04-29 17:31:00 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:32:58 +0200 |
commit | fb206f9be18b4936ef716935c2343531acaf92c2 (patch) | |
tree | 88a86e5ae9f27a050d22397cc2d991a8b9e9b70b /flake/default.nix | |
parent | Docs(todo): Update (diff) | |
download | nixos-config-fb206f9be18b4936ef716935c2343531acaf92c2.tar.gz nixos-config-fb206f9be18b4936ef716935c2343531acaf92c2.zip |
Refactor(treewide): Use separate shell library
Diffstat (limited to 'flake/default.nix')
-rw-r--r-- | flake/default.nix | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/flake/default.nix b/flake/default.nix index 0af0c127..cb090466 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -19,7 +19,7 @@ # my binaries video_pause, strip_js_comments, - shell-library, + shell_library, river_init_lesser, yambar_memory, yambar_cpu, @@ -35,24 +35,24 @@ pkgs sysLib # extra information - + system # bins - + video_pause yambar_cpu yambar_memory strip_js_comments river_init_lesser grades - shell-library + shell_library # external deps - + user_js neovim_config snap-sync # modules - + impermanence ; }; @@ -83,32 +83,32 @@ in { nixpkgs sysLib # configs - + defaultModules defaultSpecialArgs # bins - + video_pause yambar_cpu yambar_memory strip_js_comments river_init_lesser grades - shell-library + shell_library # external deps - + user_js neovim_config snap-sync templates # modules - + impermanence home-manager agenix ; }; - packages."${system}" = import ./packages {inherit nixos-generators defaultSpecialArgs pkgs shell-library;}; + packages."${system}" = import ./packages {inherit nixos-generators defaultSpecialArgs pkgs sysLib;}; apps."${system}" = import ./apps {inherit self system;}; |