~rhaenys/infra-essos

ref: 110e13b8beac0b80eabc50e63b9a2a84478711f5 infra-essos/nixos/essos/configuration.nix -rw-r--r-- 1.2 KiB
110e13b8 — rhaenys feat: major refact, proxmox -> libvirtd 5 days ago
                                                                                
3cda9d73 rhaenys
110e13b8 rhaenys
3cda9d73 rhaenys
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{ inputs, lib, config, pkgs, ...}: {
  imports = [
    ./hardware-configuration.nix
    ./hypervisor.nix
  ];

  nix = {
    extraOptions = ''
      experimental-features = nix-command flakes
    '';
    registry = lib.mapAttrs' (n: v: lib.nameValuePair n { flake = v; }) inputs;
  };

  boot.loader = {
    systemd-boot = {
      enable = true;
    };
    efi.canTouchEfiVariables = true;
    timeout = 1;
  };

  networking = {
    hostName = "essos";

    #wireless.enable = true;
    firewall.enable = true;

    networkmanager.enable = true;

    hosts = {
      "10.1.1.1" = [ "essos" ];
    };
  };

  time.timeZone = "America/Sao_Paulo";

  i18n.defaultLocale = "en_US.UTF-8";

  console = {
    font = "Lat2-Terminus16";
    keyMap = "dvorak";
  };

  users.users = {
    elise = {
      isNormalUser = true;
      extraGroups = [ "wheel" "libvirtd" ];
      shell = pkgs.zsh;
    };
  };

  programs.gnupg.agent = {
    enable = true;
    enableSSHSupport = true;
  };

  programs.zsh.enable = true;

  services = {
    openssh = {
      enable = true;
      passwordAuthentication = true;
    };

    logind.lidSwitch = "ignore";
  };

  system.stateVersion = "22.11";
}