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.

144 lines
4.3 KiB

2 years ago
2 years ago
2 years ago
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. ./rices/cwm.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. # use nix flakes
  40. nix = {
  41. package = pkgs.nixFlakes; # or versioned attributes like nix_2_7
  42. extraOptions = ''
  43. experimental-features = nix-command flakes
  44. '';
  45. };
  46. # Configure keymap in X11
  47. services.xserver.layout = "us";
  48. services.xserver.xkbOptions = "eurosign:e";
  49. # Enable CUPS to print documents.
  50. # services.printing.enable = true;
  51. # Enable sound.
  52. sound.enable = true;
  53. hardware.pulseaudio.enable = true;
  54. # Enable touchpad support (enabled default in most desktopManager).
  55. services.xserver.libinput.enable = true;
  56. # Define a user account. Don't forget to set a password with ‘passwd’.
  57. users.users.junikim = {
  58. isNormalUser = true;
  59. extraGroups = [ "wheel" "video" "audio" "input" ]; # Enable ‘sudo’ for the user.
  60. shell = pkgs.zsh;
  61. };
  62. programs.zsh.enable = true;
  63. programs.zsh.ohMyZsh.enable = true;
  64. programs.zsh.autosuggestions.enable = true;
  65. programs.zsh.shellAliases = {
  66. "gac" = "git add . && git commit";
  67. "v" = "nvim";
  68. "c" = "clear";
  69. "s" = "ls";
  70. "e" = "exit";
  71. "sy" = "systemctl";
  72. "cp" = "cp -r";
  73. };
  74. programs.zsh.ohMyZsh.plugins = [ "git" "command-not-found" ];
  75. programs.zsh.syntaxHighlighting.enable = true;
  76. nixpkgs.config.allowUnfree = true;
  77. environment.homeBinInPath = true;
  78. environment.variables = {
  79. "EDITOR" = "nvim";
  80. };
  81. services.gnome.gnome-keyring.enable = true;
  82. # List packages installed in system profile. To search, run:
  83. # $ nix search wget
  84. fonts.fonts = with pkgs; [
  85. jetbrains-mono
  86. dejavu_fonts
  87. noto-fonts-emoji
  88. iosevka
  89. ];
  90. environment.systemPackages = with pkgs; [
  91. vim neovim neofetch pfetch tmux
  92. fff
  93. nodejs shellcheck
  94. dash git
  95. wget brave
  96. nfs-utils gcc gnumake
  97. ];
  98. # Some programs need SUID wrappers, can be configured further or are
  99. # started in user sessions.
  100. # programs.mtr.enable = true;
  101. programs.gnupg.agent = {
  102. enable = true;
  103. #enableSSHSupport = true;
  104. };
  105. # List services that you want to enable:
  106. # Enable the OpenSSH daemon.
  107. # services.openssh.enable = true;
  108. # Open ports in the firewall.
  109. # networking.firewall.allowedTCPPorts = [ ... ];
  110. # networking.firewall.allowedUDPPorts = [ ... ];
  111. # Or disable the firewall altogether.
  112. # networking.firewall.enable = false;
  113. # This value determines the NixOS release from which the default
  114. # settings for stateful data, like file locations and database versions
  115. # on your system were taken. It‘s perfectly fine and recommended to leave
  116. # this value at the release version of the first install of this system.
  117. # Before changing this value read the documentation for this option
  118. # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
  119. system.stateVersion = "21.11"; # Did you read the comment?
  120. }