blob: 6c7a15e2be7521b9d6621e8bfe9932abef304b2b (
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
|
# Thinkpad
#System configuration for my thinkpad
{
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 = "thinkpad";
monitors = [
{
name = "eDP-1";
scale = 1.0;
}
];
}
];
}
|