All my system configs and packages in one repo

how did this get here

pluie.me fe7cc290 cd8faa55

verified
-26
-26
configuration.nix
··· 1 - { config, ... }: { 2 - imports = [ 3 - ./hardware-configuration.nix 4 - ./networking.nix # generated at runtime by nixos-infect 5 - 6 - ]; 7 - 8 - networking.hostName = "focaccia"; 9 - 10 - #boot.kernelParams = [ "ip=1.2.3.4::1.2.3.1:255.255.255.192:myhostname:enp35s0:off" ]; 11 - #networking = { 12 - # useDHCP = false; 13 - # interfaces."enp35s0" = { 14 - # ipv4.addresses = [{ address = "1.2.3.4"; prefixLength = 26; }]; 15 - # ipv6.addresses = [{ address = "2a01:xx:xx::1"; prefixLength = 64; }]; 16 - # }; 17 - # defaultGateway = "1.2.3.1"; 18 - # defaultGateway6 = { address = "fe80::1"; interface = "enp35s0"; }; 19 - #}; 20 - 21 - networking.firewall.allowedTCPPorts = [8000] ++ config.services.openssh.ports; 22 - 23 - #services.openssh = { 24 - # enable = true; 25 - #}; 26 - }
···