random stuff
- shell fixes - noice function for nixos-configurations - flake update - random
This commit is contained in:
parent
52bb01cc79
commit
a5040dcc1b
8 changed files with 23 additions and 22 deletions
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./zsh.nix
|
||||
./fish.nix
|
||||
./shell.nix
|
||||
./zsh.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -11,5 +11,4 @@
|
|||
direnv.enableFishIntegration = true;
|
||||
foot.enableFishIntegration = true;
|
||||
};
|
||||
environment.systemPackages = [pkgs.starship];
|
||||
}
|
||||
|
|
16
modules/software/shells/shell.nix
Normal file
16
modules/software/shells/shell.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{pkgs, ...}: {
|
||||
# everyone should use zsh xD
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
# Prevent the new user dialog in zsh
|
||||
|
||||
# supports many shell so it lives here
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
settings = {
|
||||
add_newline = false;
|
||||
};
|
||||
presets = [
|
||||
"jetpack"
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue