summaryrefslogtreecommitdiff
path: root/hosts/kaworu/default.nix
blob: 2ac1186ba75592d6f5489d7772581d2c43d7b460 (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
# Kaworu
# System configuration for my desktop
{
  inputs,
  options,
  ...
}:
inputs.nixpkgs.lib.nixosSystem rec {
  system = "x86_64-linux";
  specialArgs = {inherit inputs;};
  modules = [
    options
    ../../config
    ../../home
    ../../programs
    ../../system
    {
      imports = [
        ./hardware.nix
      ];

      # options
      hostName = "kaworu";
      monitors = [
        {
          name = "HDMI-A-1";
          scale = 1.0;
        }
      ];
    }
  ];
}