dregil: Move packages for alex from system config to hm config

This commit is contained in:
Alexander Kobjolke 2023-04-07 00:40:59 +02:00
parent e4d81ba462
commit d0e012e79b
3 changed files with 34 additions and 30 deletions

View file

@ -93,27 +93,6 @@ in
extraGroups = [ "wheel" # Enable sudo for the user.
"input"
];
packages = with pkgs; [
# gui tool
alacritty
firefox
jitsi-meet-electron
# editing
helix
nil # nix language server
# system tools
htop-vim # htop with vim bindings
erdtree # du+tree had sex
dua # ncdu but better
bat # better cat
uhk-agent
# gaming support
lutris
#inputs.simplex-chat.packages."x86_64-linux"."exe:simplex-chat"
];
};
# List packages installed in system profile. To search, run:

View file

@ -20,12 +20,6 @@
networking.firewall.enable = true;
users.users.alex = {
isNormalUser = true;
extraGroups = [ "wheel" "input" ];
shell = pkgs.zsh;
};
nix = {
gc = {
automatic = true;

View file

@ -18,18 +18,49 @@ in
homeDirectory = "/home/alex";
stateVersion = "22.11";
packages = with pkgs; [
alacritty # fast terminal
firefox # the browser with the fox
# social
jitsi-meet-electron # jitsi as a stand-alone app
discord # talk to other people
#inputs.simplex-chat.packages."x86_64-linux"."exe:simplex-chat"
# editing
helix # vim like editor
nil # nix language server
# system tools
htop-vim # htop with vim bindings
erdtree # du+tree had sex
dua # ncdu but better
bat # better cat
uhk-agent # my keyboard
mosh # ssh via udp
# gaming support
lutris
discord
mosh
];
};
programs.bash = {
enable = true;
};
programs.zsh = {
enable = true;
};
programs.git = {
enable = true;
userName = "Alexander Kobjolke";
userEmail = "me@failco.de";
};
programs.password-store = {
enable = true;
};
# do not show home-manager notifications
news.display = "silent";
}