40 lines
625 B
Nix
40 lines
625 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
# Import users
|
||
|
./users/sam
|
||
|
|
||
|
./common/core
|
||
|
./common/optional/sops.nix
|
||
|
./common/optional/firefox.nix
|
||
|
|
||
|
# Import optional
|
||
|
./common/optional/git.nix
|
||
|
./common/optional/syncthing.nix
|
||
|
./common/optional/desktop/hyprland
|
||
|
./common/optional/desktop/waybar.nix
|
||
|
|
||
|
];
|
||
|
monitors = [
|
||
|
{
|
||
|
name = "Virtual-1";
|
||
|
width = 2048;
|
||
|
height = 1152;
|
||
|
refreshRate = 60;
|
||
|
x = 0;
|
||
|
primary = true;
|
||
|
}
|
||
|
{
|
||
|
name = "Virtual-2";
|
||
|
width = 2048;
|
||
|
height = 1152;
|
||
|
refreshRate = 60;
|
||
|
x = 2048;
|
||
|
}
|
||
|
];
|
||
|
}
|