nixos/home/semita.nix

39 lines
542 B
Nix
Raw Normal View History

2024-05-30 21:20:39 +01:00
{
pkgs,
config,
lib,
...
}: {
imports = [
# Import users
./users/sam
./common/core
# Import optional
./common/optional/git.nix
2024-05-31 11:22:16 +01:00
./common/optional/sops.nix
2024-05-30 21:20:39 +01:00
./common/optional/syncthing.nix
./common/optional/desktop/hyprland
];
2024-05-31 00:17:16 +01:00
monitors = [
2024-05-30 21:20:39 +01:00
{
2024-06-01 00:50:17 +01:00
name = "DP-1";
width = 2560;
2024-05-31 22:18:40 +01:00
height = 1440;
2024-06-01 00:50:17 +01:00
refreshRate = 144;
2024-05-30 21:20:39 +01:00
x = 0;
primary = true;
}
{
2024-06-01 00:50:17 +01:00
name = "DP-2";
width = 2560;
2024-05-31 22:18:40 +01:00
height = 1440;
refreshRate = 75;
2024-06-01 00:50:17 +01:00
x = 2560;
2024-05-30 21:20:39 +01:00
}
2024-05-31 00:17:16 +01:00
];
2024-05-30 21:20:39 +01:00
}