mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-06-08 10:09:04 +02:00
Added mosh module
This commit is contained in:
parent
43fe8ad54f
commit
8103e8e236
5 changed files with 31 additions and 18 deletions
|
@ -11,16 +11,18 @@
|
|||
./home-julien.nix
|
||||
];
|
||||
|
||||
luj.mediaserver.enable = true;
|
||||
luj.homepage.enable = true;
|
||||
luj.drone = {
|
||||
enable = true;
|
||||
nginx = {
|
||||
luj = {
|
||||
mediaserver.enable = true;
|
||||
homepage.enable = true;
|
||||
drone = {
|
||||
enable = true;
|
||||
subdomain = "ci";
|
||||
nginx = {
|
||||
enable = true;
|
||||
subdomain = "ci";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
nix.maxJobs = lib.mkDefault 8;
|
||||
|
||||
networking.hostName = "lisa"; # Define your hostname.
|
||||
|
@ -30,10 +32,7 @@
|
|||
address = "2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb";
|
||||
prefixLength = 120;
|
||||
}];
|
||||
networking.firewall.allowedTCPPorts = [ 22 80 443 8096 8920 ];
|
||||
networking.firewall.allowedUDPPorts = [ 22 80 443 1900 7359 ];
|
||||
networking.firewall.allowedUDPPortRanges = [{ from = 60000; to = 61000; }];
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 80 443 8096 8920 ];
|
||||
networking.firewall.allowedUDPPorts = [ 80 443 1900 7359 ];
|
||||
system.stateVersion = "20.09"; # Did you read the comment?
|
||||
|
||||
}
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
keyMap = "fr";
|
||||
};
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
hardware.trackpoint = {
|
||||
enable = true;
|
||||
|
|
|
@ -23,9 +23,8 @@ in
|
|||
networking.interfaces.enp2s0f0.useDHCP = true;
|
||||
networking.interfaces.enp2s0f1.useDHCP = true;
|
||||
networking.firewall.enable = true;
|
||||
networking.firewall.allowedTCPPorts = [ 22 80 443 ];
|
||||
networking.firewall.allowedUDPPorts = [ 22 80 443 ];
|
||||
networking.firewall.allowedUDPPortRanges = [{ from = 60000; to = 61000; }];
|
||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||
networking.firewall.allowedUDPPorts = [ 80 443 ];
|
||||
|
||||
|
||||
services.zfs.autoSnapshot.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue