nichts/modules/user/default.nix

24 lines
462 B
Nix
Raw Normal View History

2024-11-06 00:11:11 +01:00
{
inputs,
pkgs,
...
}: rec {
2024-11-01 15:54:20 +01:00
packages = {
fish = pkgs.callPackage ./shell {};
2024-11-06 00:11:11 +01:00
helix = pkgs.callPackage ./helix {inherit (inputs.helix.packages.${pkgs.stdenv.system}) helix;};
2024-11-03 15:29:38 +01:00
kakoune = pkgs.callPackage ./kakoune {};
2024-11-01 15:54:20 +01:00
};
shell = pkgs.mkShell {
name = "bloxx-shell";
buildInputs = [packages.fish];
};
module = {
config = {
2024-11-06 00:11:11 +01:00
environment.systemPackages = with packages; [
fish
helix
2024-11-01 15:54:20 +01:00
];
};
};
}