nixos configurations
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.

30 lines
738 B

4 months ago
4 months ago
4 months ago
  1. rec {
  2. system = "x86_64-linux";
  3. timezone = "America/Chicago";
  4. locale = "en_US.UTF-8";
  5. packages = "unstable";
  6. profile = "desktop";
  7. hostId = (builtins.substring 0 8 (builtins.readFile "/etc/machine-id"));
  8. hostName = "nixos";
  9. videoDrivers = "unknown";
  10. disk = {
  11. device = "/dev/sda";
  12. swapSize = "8G";
  13. luks = false;
  14. };
  15. user = {
  16. name = "grmrgecko";
  17. description = "James Coleman";
  18. hashedPassword = "";
  19. openssh.authorizedKeys.keys = [];
  20. autoLogin = false;
  21. };
  22. root = {
  23. hashedPassword = user.hashedPassword;
  24. openssh.authorizedKeys.keys = user.openssh.authorizedKeys.keys;
  25. };
  26. git = {
  27. name = "GRMrGecko";
  28. email = "grmrgecko@gmail.com";
  29. };
  30. networkmanager.profiles = {};
  31. }