mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-04 19:20:58 +02:00
Added mosh module
This commit is contained in:
parent
43fe8ad54f
commit
8103e8e236
5 changed files with 31 additions and 18 deletions
4
base.nix
4
base.nix
|
@ -6,6 +6,7 @@
|
||||||
./users/default.nix
|
./users/default.nix
|
||||||
./users/julien.nix
|
./users/julien.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
luj.nix.enable = true;
|
luj.nix.enable = true;
|
||||||
luj.secrets.enable = true;
|
luj.secrets.enable = true;
|
||||||
luj.ssh-server.enable = true;
|
luj.ssh-server.enable = true;
|
||||||
|
@ -21,7 +22,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
programs.mosh.enable = true;
|
luj.programs.mosh.enable = true;
|
||||||
programs.gnupg.agent.enable = true;
|
programs.gnupg.agent.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
@ -34,5 +35,4 @@
|
||||||
environment.variables.EDITOR = "nvim";
|
environment.variables.EDITOR = "nvim";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,15 +11,17 @@
|
||||||
./home-julien.nix
|
./home-julien.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
luj.mediaserver.enable = true;
|
luj = {
|
||||||
luj.homepage.enable = true;
|
mediaserver.enable = true;
|
||||||
luj.drone = {
|
homepage.enable = true;
|
||||||
|
drone = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nginx = {
|
nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
subdomain = "ci";
|
subdomain = "ci";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
nix.maxJobs = lib.mkDefault 8;
|
nix.maxJobs = lib.mkDefault 8;
|
||||||
|
|
||||||
|
@ -30,10 +32,7 @@
|
||||||
address = "2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb";
|
address = "2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb";
|
||||||
prefixLength = 120;
|
prefixLength = 120;
|
||||||
}];
|
}];
|
||||||
networking.firewall.allowedTCPPorts = [ 22 80 443 8096 8920 ];
|
networking.firewall.allowedTCPPorts = [ 80 443 8096 8920 ];
|
||||||
networking.firewall.allowedUDPPorts = [ 22 80 443 1900 7359 ];
|
networking.firewall.allowedUDPPorts = [ 80 443 1900 7359 ];
|
||||||
networking.firewall.allowedUDPPortRanges = [{ from = 60000; to = 61000; }];
|
|
||||||
|
|
||||||
system.stateVersion = "20.09"; # Did you read the comment?
|
system.stateVersion = "20.09"; # Did you read the comment?
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,6 @@
|
||||||
keyMap = "fr";
|
keyMap = "fr";
|
||||||
};
|
};
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
|
||||||
|
|
||||||
hardware.trackpoint = {
|
hardware.trackpoint = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -23,9 +23,8 @@ in
|
||||||
networking.interfaces.enp2s0f0.useDHCP = true;
|
networking.interfaces.enp2s0f0.useDHCP = true;
|
||||||
networking.interfaces.enp2s0f1.useDHCP = true;
|
networking.interfaces.enp2s0f1.useDHCP = true;
|
||||||
networking.firewall.enable = true;
|
networking.firewall.enable = true;
|
||||||
networking.firewall.allowedTCPPorts = [ 22 80 443 ];
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||||
networking.firewall.allowedUDPPorts = [ 22 80 443 ];
|
networking.firewall.allowedUDPPorts = [ 80 443 ];
|
||||||
networking.firewall.allowedUDPPortRanges = [{ from = 60000; to = 61000; }];
|
|
||||||
|
|
||||||
|
|
||||||
services.zfs.autoSnapshot.enable = true;
|
services.zfs.autoSnapshot.enable = true;
|
||||||
|
|
16
modules/mosh/default.nix
Normal file
16
modules/mosh/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ pkgs, config, lib, inputs, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.luj.programs.mosh;
|
||||||
|
in
|
||||||
|
with lib;
|
||||||
|
{
|
||||||
|
options.luj.programs.mosh = {
|
||||||
|
enable = mkEnableOption "Enable mosh program";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable
|
||||||
|
{
|
||||||
|
programs.mosh.enable = true;
|
||||||
|
networking.firewall.allowedUDPPortRanges = [{ from = 60000; to = 61000; }];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue