improve baseline module
This commit is contained in:
parent
bcd049b8c5
commit
995b085d82
|
@ -13,18 +13,28 @@ in {
|
|||
config = mkIf cfg.enable {
|
||||
xdg.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
calc
|
||||
file
|
||||
git
|
||||
htop
|
||||
killall
|
||||
man-pages
|
||||
man-pages-posix
|
||||
tree
|
||||
units
|
||||
unzip
|
||||
zip
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
calc
|
||||
file
|
||||
git
|
||||
htop
|
||||
killall
|
||||
man-pages
|
||||
man-pages-posix
|
||||
tree
|
||||
units
|
||||
unzip
|
||||
vim
|
||||
zip
|
||||
];
|
||||
};
|
||||
keyboard = {
|
||||
layout = "us";
|
||||
variant = "altgr-intl";
|
||||
};
|
||||
sessionVariables = {
|
||||
"EDITOR" = mkDefault "vim";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -44,5 +44,8 @@ in {
|
|||
vim-multiple-cursors
|
||||
];
|
||||
};
|
||||
home.sessionVariables = {
|
||||
"EDITOR" = "neovim";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -48,13 +48,8 @@
|
|||
username = "fabian";
|
||||
homeDirectory = "/home/fabian";
|
||||
sessionVariables = {
|
||||
"EDITOR" = "nvim";
|
||||
"TERMINAL" = "kitty";
|
||||
};
|
||||
keyboard = {
|
||||
layout = "us";
|
||||
variant = "altgr-intl";
|
||||
};
|
||||
};
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue