NixOS configs
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.

138 lines
4.3 KiB

2 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. imports =
  7. [ # Include the results of the hardware scan.
  8. ./hardware-configuration.nix
  9. ./home.nix
  10. ];
  11. # Use the GRUB 2 boot loader.
  12. boot.loader.grub.enable = true;
  13. boot.loader.grub.version = 2;
  14. # boot.loader.grub.efiSupport = true;
  15. # boot.loader.grub.efiInstallAsRemovable = true;
  16. # boot.loader.efi.efiSysMountPoint = "/boot/efi";
  17. # Define on which hard drive you want to install Grub.
  18. boot.loader.grub.device = "/dev/vda"; # or "nodev" for efi only
  19. networking.hostName = "nixbox"; # Define your hostname.
  20. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
  21. # Set your time zone.
  22. time.timeZone = "US/Eastern";
  23. # The global useDHCP flag is deprecated, therefore explicitly set to false here.
  24. # Per-interface useDHCP will be mandatory in the future, so this generated config
  25. # replicates the default behaviour.
  26. networking.useDHCP = false;
  27. networking.interfaces.enp1s0.useDHCP = true;
  28. # Configure network proxy if necessary
  29. # networking.proxy.default = "http://user:password@proxy:port/";
  30. # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
  31. # Select internationalisation properties.
  32. i18n.defaultLocale = "en_US.UTF-8";
  33. console = {
  34. font = "Lat2-Terminus16";
  35. keyMap = "us";
  36. };
  37. # Enable the X11 windowing system.
  38. services.xserver.enable = true;
  39. services.xserver.displayManager.startx.enable = true;
  40. # use nix flakes
  41. nix = {
  42. package = pkgs.nixFlakes; # or versioned attributes like nix_2_7
  43. extraOptions = ''
  44. experimental-features = nix-command flakes
  45. '';
  46. };
  47. # Configure keymap in X11
  48. services.xserver.layout = "us";
  49. services.xserver.xkbOptions = "eurosign:e";
  50. # Enable CUPS to print documents.
  51. # services.printing.enable = true;
  52. # Enable sound.
  53. sound.enable = true;
  54. hardware.pulseaudio.enable = true;
  55. # Enable touchpad support (enabled default in most desktopManager).
  56. services.xserver.libinput.enable = true;
  57. # Define a user account. Don't forget to set a password with ‘passwd’.
  58. users.users.junikim = {
  59. isNormalUser = true;
  60. extraGroups = [ "wheel" "video" "audio" "input" ]; # Enable ‘sudo’ for the user.
  61. shell = pkgs.zsh;
  62. };
  63. programs.zsh.enable = true;
  64. programs.zsh.ohMyZsh.enable = true;
  65. programs.zsh.autosuggestions.enable = true;
  66. programs.zsh.shellAliases = {
  67. "gac" = "git add . && git commit";
  68. "v" = "nvim";
  69. "c" = "clear";
  70. "s" = "ls";
  71. "e" = "exit";
  72. "sy" = "systemctl";
  73. "cp" = "cp -r";
  74. };
  75. programs.zsh.ohMyZsh.plugins = [ "git" "command-not-found" ];
  76. programs.zsh.syntaxHighlighting.enable = true;
  77. nixpkgs.config.allowUnfree = true;
  78. environment.homeBinInPath = true;
  79. environment.variables = {
  80. "EDITOR" = "nvim";
  81. };
  82. # List packages installed in system profile. To search, run:
  83. # $ nix search wget
  84. fonts.fonts = with pkgs; [ jetbrains-mono dejavu_fonts ];
  85. environment.systemPackages = with pkgs; [
  86. vim neovim neofetch tmux
  87. fff
  88. nodejs shellcheck
  89. dash git
  90. wget brave
  91. nfs-utils gcc gnumake
  92. ];
  93. # Some programs need SUID wrappers, can be configured further or are
  94. # started in user sessions.
  95. # programs.mtr.enable = true;
  96. programs.gnupg.agent = {
  97. enable = true;
  98. #enableSSHSupport = true;
  99. };
  100. # List services that you want to enable:
  101. # Enable the OpenSSH daemon.
  102. # services.openssh.enable = true;
  103. # Open ports in the firewall.
  104. # networking.firewall.allowedTCPPorts = [ ... ];
  105. # networking.firewall.allowedUDPPorts = [ ... ];
  106. # Or disable the firewall altogether.
  107. # networking.firewall.enable = false;
  108. # This value determines the NixOS release from which the default
  109. # settings for stateful data, like file locations and database versions
  110. # on your system were taken. It‘s perfectly fine and recommended to leave
  111. # this value at the release version of the first install of this system.
  112. # Before changing this value read the documentation for this option
  113. # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
  114. system.stateVersion = "21.11"; # Did you read the comment?
  115. }