45 lines
625 B
Nix
45 lines
625 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
|
|
|
|
];
|
|
|
|
home.packages = [
|
|
pkgs.alacritty
|
|
pkgs.zathura
|
|
pkgs.xfce.thunar
|
|
];
|
|
|
|
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;
|
|
}
|
|
];
|
|
}
|