nixos/home/semita.nix

39 lines
542 B
Nix

{
pkgs,
config,
lib,
...
}: {
imports = [
# Import users
./users/sam
./common/core
# Import optional
./common/optional/git.nix
./common/optional/sops.nix
./common/optional/syncthing.nix
./common/optional/desktop/hyprland
];
monitors = [
{
name = "DP-1";
width = 2560;
height = 1440;
refreshRate = 144;
x = 0;
primary = true;
}
{
name = "DP-2";
width = 2560;
height = 1440;
refreshRate = 75;
x = 2560;
}
];
}