diff options
author | Soispha <soispha@vhack.eu> | 2023-10-22 14:18:05 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-22 14:18:05 +0200 |
commit | 4271564beea263b21c31c0512995ff616c69a05c (patch) | |
tree | 9ea923d9c29ef7661ce8bf6a621c4926de9d2cd0 /flake | |
parent | fix(hm/pkgs/scr/neorg): Remove leading whitespace in message (diff) | |
download | nixos-config-4271564beea263b21c31c0512995ff616c69a05c.tar.gz nixos-config-4271564beea263b21c31c0512995ff616c69a05c.zip |
feat(hm/conf/firefox/scripts): Package through the flake outputs
Diffstat (limited to 'flake')
-rw-r--r-- | flake/packages/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/flake/packages/default.nix b/flake/packages/default.nix index 2ca25804..1b14be6a 100644 --- a/flake/packages/default.nix +++ b/flake/packages/default.nix @@ -55,6 +55,7 @@ ) self.nixosConfigurations; output_neovim = lib.attrsets.mapAttrs' (name: value: lib.attrsets.nameValuePair "nvim_${name}" value) nvim; + firefox = (import ../../hm/soispha/conf/firefox/scripts) {inherit pkgs sysLib;}; in { install-iso = nixos-generators.nixosGenerate { @@ -65,7 +66,9 @@ in ]; format = "install-iso"; }; + update_shell_lib = shell_library.packages."${system}".update_shell_library; + # gpg-iso = nixos-generators.nixosGenerate { # system = "x86_64-linux"; # specialArgs = defaultSpecialArgs; @@ -80,3 +83,4 @@ in } // output // output_neovim + // firefox |