nixos/home/sparky.nix

44 lines
701 B
Nix
Raw Normal View History

2024-05-16 20:19:01 +01:00
{
pkgs,
config,
lib,
...
}: {
imports = [
2024-05-17 10:54:53 +01:00
# Import users
./users/media
2024-05-16 20:19:01 +01:00
./common/core
./common/optional/sops.nix
# Import optional
./common/optional/git.nix
2024-05-24 21:23:56 +01:00
./common/optional/syncthing.nix
2024-05-31 11:22:16 +01:00
./common/optional/desktop/cinnamon
2024-05-16 20:19:01 +01:00
];
2024-05-28 20:19:30 +01:00
monitors = [
{
2024-05-31 15:48:46 +01:00
name = "HDMI-0";
2024-05-28 20:19:30 +01:00
width = 2560;
height = 1440;
2024-05-31 15:48:46 +01:00
vendor = "SAM";
product = "SAMSUNG";
serial = "0x01000e00";
refreshRate = 60;
2024-05-28 20:19:30 +01:00
x = 0;
primary = true;
}
2024-05-31 15:48:46 +01:00
{
name = "HDMI-1";
width = 2560;
height = 1440;
vendor = "ACI";
product = "ASUS PB277";
serial = "0x0002507d";
refreshRate = 75;
x = 2560;
}
2024-05-28 20:19:30 +01:00
];
2024-05-17 01:07:42 +01:00
}