dregil: Add discord, lutris and mosh

This commit is contained in:
Alexander Kobjolke 2023-04-05 20:53:52 +02:00
parent dc34117014
commit c72baa173c
2 changed files with 10 additions and 1 deletions

View file

@ -14,6 +14,8 @@
fd fd
fzf fzf
bat bat
lshw
pciutils
]; ];
networking.firewall.enable = true; networking.firewall.enable = true;

View file

@ -17,12 +17,19 @@ in
username = "alex"; username = "alex";
homeDirectory = "/home/alex"; homeDirectory = "/home/alex";
stateVersion = "22.11"; stateVersion = "22.11";
packages = with pkgs; [ packages = with pkgs; [
lutris lutris
discord
mosh
]; ];
}; };
programs.git = {
enable = true;
userName = "Alexander Kobjolke";
userEmail = "me@failco.de";
};
# do not show home-manager notifications # do not show home-manager notifications
news.display = "silent"; news.display = "silent";
} }