flake: sitch to npins

Signed-off-by: Bloxx12 <charlie@charlieroot.dev>
Change-Id: I6a6a6964f4aa3349951fe7574622564452ad1af1
This commit is contained in:
Bloxx12 2025-07-19 21:51:37 +02:00
commit 2e7d11c2ed
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
24 changed files with 707 additions and 731 deletions

View file

@ -8,8 +8,9 @@
inherit (builtins) elemAt;
inherit (lib.options) mkOption;
inherit (lib.types) listOf str package;
inherit (config.meta.mainUser) username;
nushell = pkgs.callPackage (self + "/packages/nushell") {};
in {
options.meta = {
users = mkOption {
@ -49,7 +50,7 @@ in {
};
package = mkOption {
type = package;
default = self.packages.${pkgs.stdenv.system}.nushell;
default = nushell;
};
};
};
@ -69,7 +70,7 @@ in {
"nix"
"docker"
];
shell = self.packages.${pkgs.stdenv.system}.nushell;
shell = nushell;
};
};
};