diff options
author | Franck Cuny <franck@fcuny.net> | 2024-05-04 13:41:42 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-05-04 13:41:42 -0700 |
commit | fe3cf4812657ee972315e0bd0d6e5b0c1e8774c0 (patch) | |
tree | e4b5e7be716bb64e69c4d32d43cb85e67c918252 /nix | |
parent | don't install the script for pizza (diff) | |
download | world-fe3cf4812657ee972315e0bd0d6e5b0c1e8774c0.tar.gz |
move the slocalc under `src`
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, 1 insertions, 4 deletions
diff --git a/nix/flake/packages.nix b/nix/flake/packages.nix index 10c003f..3bfbec5 100644 --- a/nix/flake/packages.nix +++ b/nix/flake/packages.nix @@ -6,8 +6,7 @@ perSystem = { config, pkgs, ... }: { overlayAttrs = { inherit (config.packages) - seqstat - slocalc; + seqstat; }; packages = { @@ -16,7 +15,6 @@ ipconverter = pkgs.callPackage "${self}/packages/ipconverter" { }; robloxenv = pkgs.callPackage "${self}/packages/robloxenv" { }; seqstat = pkgs.callPackage "${self}/packages/seqstat" { }; - slocalc = pkgs.callPackage "${self}/packages/slocalc" { }; }; }; } diff --git a/nix/profiles/home-manager/shell.nix b/nix/profiles/home-manager/shell.nix index a95558c..2c3734c 100644 --- a/nix/profiles/home-manager/shell.nix +++ b/nix/profiles/home-manager/shell.nix @@ -32,7 +32,6 @@ self.packages.${pkgs.system}.git-broom self.packages.${pkgs.system}.ipconverter self.packages.${pkgs.system}.seqstat - self.packages.${pkgs.system}.slocalc ]; xdg = { |