diff options
Diffstat (limited to 'nix')
-rw-r--r-- | nix/flake/packages.nix | 4 | ||||
-rw-r--r-- | nix/profiles/home-manager/shell.nix | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/nix/flake/packages.nix b/nix/flake/packages.nix index 1d310d3..71b9dc5 100644 --- a/nix/flake/packages.nix +++ b/nix/flake/packages.nix @@ -6,7 +6,8 @@ perSystem = { config, pkgs, ... }: { overlayAttrs = { inherit (config.packages) - seqstat; + seqstat + slocalc; }; packages = { @@ -14,6 +15,7 @@ git-blame-stats = pkgs.callPackage "${self}/packages/git-blame-stats" { }; git-broom = pkgs.callPackage "${self}/packages/git-broom" { }; ipconverter = pkgs.callPackage "${self}/packages/ipconverter" { }; + slocalc = pkgs.callPackage "${self}/packages/slocalc" { }; }; }; } diff --git a/nix/profiles/home-manager/shell.nix b/nix/profiles/home-manager/shell.nix index 3869d9b..046cb5e 100644 --- a/nix/profiles/home-manager/shell.nix +++ b/nix/profiles/home-manager/shell.nix @@ -25,6 +25,7 @@ self.packages.${pkgs.system}.git-broom self.packages.${pkgs.system}.ipconverter self.packages.${pkgs.system}.seqstat + self.packages.${pkgs.system}.slocalc ]; home.sessionVariables = { |