summaryrefslogtreecommitdiff
path: root/hosts/kaworu/default.nix
blob: f20f40037e07deb0e1189f345e0882343775f560 (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
# Kaworu
# System configuration for my desktop
{ inputs, ... }: {
  imports = [
    ./hardware.nix
  ];

  # options
  hostName = "kaworu";
  monitors = with inputs.self.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;
    homestuck.enable = true;
    minecraft.enable = true;
    steam.enable = true;
  };

  # modules
  amdgpu.enable = true;
  bluetooth.enable = true;
  network.enable = true;
}