Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.4 KiB

4 years ago
  1. # Edit this configuration file to define what should be installed on
  2. # your system. Help is available in the configuration.nix(5) man page
  3. # and in the NixOS manual (accessible by running ‘nixos-help’).
  4. { config, pkgs, ... }:
  5. {
  6. boot.loader.systemd-boot.enable = true;
  7. boot.loader.efi.canTouchEfiVariables = true;
  8. networking.hostName = "desktop"; # Define your hostname.
  9. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
  10. # The global useDHCP flag is deprecated, therefore explicitly set to false here.
  11. # Per-interface useDHCP will be mandatory in the future, so this generated config
  12. # replicates the default behaviour.
  13. networking.useDHCP = false;
  14. networking.interfaces.enp0s31f6.useDHCP = true;
  15. # Configure network proxy if necessary
  16. # networking.proxy.default = "http://user:password@proxy:port/";
  17. # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
  18. # Select internationalisation properties.
  19. # Set your time zone.
  20. # List packages installed in system profile. To search, run:
  21. # $ nix search wget
  22. # Some programs need SUID wrappers, can be configured further or are
  23. # started in user sessions.
  24. # programs.mtr.enable = true;
  25. # programs.gnupg.agent = { enable = true; enableSSHSupport = true; };
  26. # List services that you want to enable:
  27. # Enable the OpenSSH daemon.
  28. # services.openssh.enable = true;
  29. # Open ports in the firewall.
  30. # networking.firewall.allowedTCPPorts = [ ... ];
  31. # networking.firewall.allowedUDPPorts = [ ... ];
  32. # Or disable the firewall altogether.
  33. # networking.firewall.enable = false;
  34. # Enable CUPS to print documents.
  35. # services.printing.enable = true;
  36. # Enable sound.
  37. # Enable the X11 windowing system.
  38. # services.xserver.enable = true;
  39. # services.xserver.layout = "us";
  40. # services.xserver.xkbOptions = "eurosign:e";
  41. # Enable touchpad support.
  42. # services.xserver.libinput.enable = true;
  43. # Enable the KDE Desktop Environment.
  44. # services.xserver.displayManager.sddm.enable = true;
  45. # services.xserver.desktopManager.plasma5.enable = true;
  46. # Define a user account. Don't forget to set a password with ‘passwd’.
  47. # This value determines the NixOS release with which your system is to be
  48. # compatible, in order to avoid breaking some software such as database
  49. # servers. You should change this only after NixOS release notes say you
  50. # should.
  51. }