Advertisement
Guest User

configuration.nix

a guest
May 16th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. { config, pkgs, ... };
  2.  
  3. {
  4. imports =
  5. [
  6. ./hardware-configuration.nix
  7. ];
  8. boot = {
  9. kernelParams = [ "nomodeset" ];
  10. loader = {
  11. timeout = 0;
  12. efi.canTouchEfiVariables = true;
  13. systemd-boot = {
  14. enable = true;
  15. editor = false;
  16. };
  17. };
  18. };
  19. i18n = {
  20. defaultLocale = "C.UTF-8";
  21. };
  22. nix = {
  23. allowedUsers = [ "@wheel" ];
  24. autoOptimizeStore = true;
  25. };
  26. time.timeZone = "Europe/Istanbul";
  27. system.stateVersion = "19.03";
  28. users.users.glacion = {
  29. hashedPassword = "XXX";
  30. isNormalUser = true;
  31. extraGroups = [ "wheel" ];
  32. };
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement