aboutsummaryrefslogtreecommitdiff
path: root/hosts/sparrow/default.nix
blob: c7b175fe3519884bef066034e320f4628c4c891b (plain)
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
{ inputs, pkgs, ... }:
{
  system.stateVersion = "24.05";

  imports = [ ./hardware.nix ];

  home-manager = {
    useGlobalPkgs = true;
    useUserPackages = true;
    users = import "${inputs.self}/users";
    extraSpecialArgs = {
      inherit inputs;
      headless = false;
    };
  };

  networking = {
    hostName = "sparrow";
    networkmanager.enable = true;
  };

  time.timeZone = "America/Detroit";

  boot = {
    loader = {
      systemd-boot.enable = true;
      efi.canTouchEfiVariables = true;
    };
    binfmt.emulatedSystems = [
      "aarch64-linux"
      "riscv64-linux"
    ];
  };

  # Since I don't always carry my split keyboard, remap CAPS to left CTRL.
  console.useXkbConfig = true;
  services = {
    xserver.xkb.options = "ctrl:swapcaps";
    libinput.enable = true;
  };

  environment.systemPackages = with pkgs; [
    acpi
    unstable.qbittorrent
  ];
}