blob: 4eb87b04f7d3d7ce420031f33493a09f407baadc (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
{
inputs,
lib,
pkgs,
...
}:
{
system.stateVersion = "24.05";
imports = [ ./filesystems ];
hardware = {
enableRedistributableFirmware = true;
cpu.intel.updateMicrocode = true;
};
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
boot.initrd.availableKernelModules = [
"xhci_pci"
"ahci"
"usb_storage"
"sd_mod"
];
boot.kernelModules = [ "kvm-intel" ];
boot.binfmt.emulatedSystems = [
"aarch64-linux"
"riscv64-linux"
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users = import "${inputs.self}/users";
extraSpecialArgs = {
inherit inputs;
headless = false;
};
};
time.timeZone = "America/Detroit";
networking = {
hostName = "sparrow";
networkmanager.enable = true;
};
# Since I don't always use 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
];
}
|