diff options
author | Karel Kočí <cynerd@email.cz> | 2022-06-10 15:25:11 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-06-10 15:25:11 +0200 |
commit | 6ce39ae86918f1870603cf9685fd40742efcfc9b (patch) | |
tree | e75261f3868c54a57f7d08564ac7da09d2f7277b /nixos/modules | |
parent | 93b0545d11bf8c7f065203f7f3eaf1d0e3730dce (diff) | |
download | nixos-personal-6ce39ae86918f1870603cf9685fd40742efcfc9b.tar.gz nixos-personal-6ce39ae86918f1870603cf9685fd40742efcfc9b.tar.bz2 nixos-personal-6ce39ae86918f1870603cf9685fd40742efcfc9b.zip |
Some samba-wsdd and oldvpn for binky
Diffstat (limited to 'nixos/modules')
-rw-r--r-- | nixos/modules/desktop.nix | 7 | ||||
-rw-r--r-- | nixos/modules/generic.nix | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/nixos/modules/desktop.nix b/nixos/modules/desktop.nix index 41efa0b..c67ae01 100644 --- a/nixos/modules/desktop.nix +++ b/nixos/modules/desktop.nix @@ -131,6 +131,13 @@ in { ]; }; + services.samba-wsdd = { + enable = true; + discovery = true; + }; + networking.firewall.allowedTCPPorts = [ 5357 ]; + networking.firewall.allowedUDPPorts = [ 3702 ]; + fonts.fonts = with pkgs; [ arkpandora_ttf corefonts diff --git a/nixos/modules/generic.nix b/nixos/modules/generic.nix index 31f0829..546e04a 100644 --- a/nixos/modules/generic.nix +++ b/nixos/modules/generic.nix @@ -31,6 +31,7 @@ with lib; # Administration tools coreutils moreutils psmisc progress lshw dig + gnumake # NCurses tools htop iotop glances @@ -67,14 +68,14 @@ with lib; passwordFile = "/run/secrets/root.pass"; }; cynerd = { + group = "cynerd"; + extraGroups = ["users" "wheel"]; uid = 1000; subUidRanges = [{ count = 65534; startUid = 10000; }]; subGidRanges = [{ count = 65534; startGid = 10000; }]; - group = "cynerd"; isNormalUser = true; createHome = true; shell = pkgs.zsh.out; - extraGroups = ["users" "wheel"]; passwordFile = "/run/secrets/cynerd.pass"; openssh.authorizedKeys.keyFiles = [ (config.personal-secrets + "/unencrypted/git-private.pub") |