Refactor configuration to be more modular.
TODO: Update the documentation in the README to reflect changes
This commit is contained in:
parent
7a30ff9f94
commit
af0078d7af
32 changed files with 889 additions and 1125 deletions
|
@ -1,6 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.persistence."/nix/persist".users.hu.directories = [
|
||||
".config/Signal"
|
||||
".config/vesktop"
|
||||
".config/tutanota-desktop"
|
||||
".config/tuta_integration"
|
||||
".config/Element"
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
tutanota-desktop
|
||||
signal-desktop
|
||||
|
|
|
@ -1,6 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.persistence."/nix/persist".users.hu.directories = [
|
||||
".steam"
|
||||
".local/share/Steam"
|
||||
".local/share/honkers-railway-launcher"
|
||||
".local/share/PrismLauncher"
|
||||
".xlcore"
|
||||
".local/share/Euro Truck Simulator 2"
|
||||
".local/share/osu"
|
||||
];
|
||||
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = false;
|
||||
|
@ -14,5 +24,11 @@
|
|||
osu-lazer-bin
|
||||
protontricks
|
||||
];
|
||||
|
||||
# Minecraft server
|
||||
networking.firewall = {
|
||||
allowedTCPPorts = [ 25565 ];
|
||||
allowedUDPPorts = [ 25565 ];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.persistence."/nix/persist".users.hu.directories = [
|
||||
".config/OpenTabletDriver"
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
mpv
|
||||
imagemagick
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue