blob: c608607e131537d160adf073b89bf2a693d471d4 (
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
|
# Kaworu
# System configuration for my desktop
{lib, ...}: {
imports = [
./hardware.nix
];
# options
hostName = "kaworu";
monitors = with lib.monitors; [
asus
acer
];
# modules
apps = {
caelestia.enable = true;
hyprlock.enable = true;
kitty.enable = true;
obs.enable = true;
};
browsers = {
firefox.enable = true;
};
desktops = {
enable = true;
hyprland.enable = true;
ly.enable = true;
};
gaming = {
enable = true;
openrgb.enable = true;
homestuck.enable = true;
minecraft.enable = true;
steam.enable = true;
};
bootloader = {
limine.enable = true;
plymouth.enable = true;
};
# modules
amdgpu.enable = true;
bluetooth.enable = true;
network.enable = true;
}
|