initial commit

This commit is contained in:
2025-10-14 12:29:46 +02:00
parent 0439bb0ff7
commit 903704e4d7
99 changed files with 8495 additions and 0 deletions

26
homemanager/nushell.nix Normal file
View File

@@ -0,0 +1,26 @@
{
lib,
config,
...
}:
{
options = {
modules.nushell.enable = lib.mkEnableOption "nushell";
};
config = lib.mkIf config.modules.nushell.enable {
programs.nushell = {
enable = true;
extraConfig = ''
$env.config = {
show_banner: false
edit_mode: vi
}
'';
shellAliases = {
v = "steam-run nvim";
nix-dev = "nix develop --command fish";
nix-shell = "nix-shell --command 'fish'";
};
};
};
}