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
|
|
|
|
|
|
|
home.packages = [
|
2024-05-31 22:09:56 +01:00
|
|
|
pkgs.alacritty
|
2024-05-31 00:17:16 +01:00
|
|
|
pkgs.zathura
|
|
|
|
pkgs.xfce.thunar
|
|
|
|
];
|
|
|
|
|
|
|
|
monitors = [
|
2024-05-30 21:20:39 +01:00
|
|
|
{
|
|
|
|
name = "Virtual-1";
|
2024-05-31 22:18:40 +01:00
|
|
|
width = 1920;
|
|
|
|
height = 1440;
|
|
|
|
refreshRate = 75;
|
2024-05-30 21:20:39 +01:00
|
|
|
x = 0;
|
|
|
|
primary = true;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "Virtual-2";
|
2024-05-31 22:18:40 +01:00
|
|
|
width = 1920;
|
|
|
|
height = 1440;
|
|
|
|
refreshRate = 75;
|
|
|
|
x = 1920;
|
2024-05-30 21:20:39 +01:00
|
|
|
}
|
2024-05-31 00:17:16 +01:00
|
|
|
];
|
2024-05-30 21:20:39 +01:00
|
|
|
}
|