Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update stuff

+19 -3
+1 -1
networking.nix
··· 27 27 # Or disable the firewall altogether. 28 28 # TODO: allow some ports 29 29 networking.firewall = { 30 - enable = true; 30 + enable = false; 31 31 allowPing = true; 32 32 allowedUDPPorts = [ ]; 33 33 allowedTCPPorts = [
+10
noah-home.nix
··· 339 339 recursive = true; 340 340 }; 341 341 342 + home.file.".luacheckrc" = { 343 + text = '' 344 + globals = { 345 + "vim", 346 + "vis", 347 + } 348 + ''; 349 + 350 + }; 351 + 342 352 gtk = { 343 353 enable = true; 344 354 theme = {
+7 -1
services.nix
··· 1 - { ... }: 1 + { pkgs, ... }: 2 2 { 3 3 # Some programs need SUID wrappers, can be configured further or are 4 4 # started in user sessions. ··· 32 32 }; 33 33 34 34 services.fwupd.enable = true; 35 + 36 + services.xrdp = { 37 + enable = true; 38 + openFirewall = true; 39 + defaultWindowManager = "${pkgs.lxqt.lxqt-session}/bin/lxqt-session"; 40 + }; 35 41 36 42 # Containers and VMs 37 43 virtualisation = {
+1 -1
users.nix
··· 28 28 name = "chiefnoah.keys"; 29 29 # Update this with: 30 30 # `curl https://meta.sr.ht/~chiefnoah.keys | sha256sum` 31 - sha256 = "05jak79d1pv7zzz9ikihvgbrv7fg77l6kyrq3yi1gz4qqj28jmbh"; 31 + sha256 = "1cry2r7m7c15ajlcdncdx3ppf6m0pzwgn1d025sq8g4d21n1qpal"; 32 32 })); 33 33 }; 34 34