Fix Monarch new environment setup
This commit is contained in:
parent
43cefa3995
commit
26382d8d20
|
@ -1,6 +1,12 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [ ../personal.nix ];
|
||||
imports = [
|
||||
../env
|
||||
../tui
|
||||
../gui/wezterm.nix
|
||||
../git/personal.nix
|
||||
../ssh/personal.nix
|
||||
];
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
home.username = "tux";
|
||||
|
|
6
home/env/bash.nix
vendored
6
home/env/bash.nix
vendored
|
@ -3,11 +3,7 @@
|
|||
{
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
lg = "lazygit";
|
||||
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
|
||||
neovide = "WINIT_UNIX_BACKEND=x11 neovide";
|
||||
};
|
||||
shellAliases = { lg = "lazygit"; };
|
||||
};
|
||||
programs.keychain.enableBashIntegration = true;
|
||||
programs.starship.enableBashIntegration = true;
|
||||
|
|
1
home/env/default.nix
vendored
1
home/env/default.nix
vendored
|
@ -9,6 +9,7 @@
|
|||
./nix-index.nix
|
||||
./readline.nix
|
||||
./starship.nix
|
||||
./zsh.nix
|
||||
];
|
||||
home.packages = with pkgs; [ dig file gnumake silver-searcher ];
|
||||
}
|
||||
|
|
6
home/env/fish.nix
vendored
6
home/env/fish.nix
vendored
|
@ -3,11 +3,7 @@
|
|||
{
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
shellAbbrs = {
|
||||
lg = "lazygit";
|
||||
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
|
||||
neovide = "WINIT_UNIX_BACKEND=x11 neovide";
|
||||
};
|
||||
shellAbbrs = { lg = "lazygit"; };
|
||||
};
|
||||
programs.keychain.enableFishIntegration = true;
|
||||
programs.starship.enableFishIntegration = true;
|
||||
|
|
7
home/env/zsh.nix
vendored
7
home/env/zsh.nix
vendored
|
@ -3,12 +3,7 @@
|
|||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
ll = "ls -l";
|
||||
lg = "lazygit";
|
||||
hypr = "Hyprland -c $HOME/.config/hypr/hyprland-$(hostname).conf";
|
||||
neovide = "WINIT_UNIX_BACKEND=x11 neovide";
|
||||
};
|
||||
shellAliases = { ll = "ls -l"; lg = "lazygit"; };
|
||||
history = {
|
||||
size = 10000;
|
||||
path = "${config.xdg.dataHome}/zsh/history";
|
||||
|
|
Loading…
Reference in a new issue