seeing if it's easier to fork tA's nixos laptop config rather than make one from scratch (more or less).
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20 行
373B

  1. {
  2. networking = {
  3. hostName = "iwakura";
  4. useDHCP = false;
  5. firewall = {
  6. allowedTCPPorts = [ 8384 6881 6882 6883 6884 6697 ];
  7. allowedUDPPorts = [ 6881 6882 6883 6884 6697 ];
  8. allowedTCPPortRanges = [
  9. { from = 8995; to = 8999; }
  10. ];
  11. };
  12. interfaces = {
  13. enp0s25.useDHCP = true;
  14. wlp3s0.useDHCP = true;
  15. };
  16. };
  17. }