blob: 3b11993e58c6597c8892385185815c63f5f05060 (
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
|
{ lib, pkgs, ... }:
{
imports = [
./hardware.nix
../../modules/hyprland/monitor.nix
../../modules/usbauth/default.nix
];
networking.hostName = "workstation";
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
device = "nodev";
efiSupport = true;
};
};
hyprland.monitors = {
default = {
resolution = "preferred";
position = "auto";
scale = 1;
};
};
webtray.instances = {
element = {
url = "https://chat.nathanreiner.xyz";
autoStart = true;
openInWindow = false;
};
syncthing-tray = {
url = "http://localhost:8384";
autoStart = true;
openInWindow = false;
};
};
usbauth = {
enable = true;
device = "root";
uuid = "543f281c-4feb-4a5a-b51b-99114fa4b8a1";
keyname = "n8";
};
system.stateVersion = "24.05";
}
|