64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{ ...
|
|
}: {
|
|
imports = [
|
|
# Import users
|
|
./users/sam
|
|
|
|
./common/core
|
|
|
|
# Import optional
|
|
./common/optional/git.nix
|
|
./common/optional/sops.nix
|
|
./common/optional/syncthing.nix
|
|
./common/optional/desktop/dwm
|
|
./common/optional/desktop/common/themes/standard-dark.nix
|
|
|
|
];
|
|
# ------
|
|
# | DP-1
|
|
# ------
|
|
monitors = [
|
|
{
|
|
name = "DP-1";
|
|
width = 2560;
|
|
height = 1440;
|
|
x = 0;
|
|
y = 0;
|
|
workspace = "1";
|
|
primary = true;
|
|
}
|
|
{
|
|
name = "DP-2";
|
|
width = 2560;
|
|
height = 1440;
|
|
x = 2560;
|
|
y = 0;
|
|
}
|
|
];
|
|
|
|
colorScheme = {
|
|
slug = "serene";
|
|
name = "Serene";
|
|
author = "Bitlab21";
|
|
palette = {
|
|
base00 = "#1F1F28";
|
|
base01 = "#16161D";
|
|
base02 = "#223249";
|
|
base03 = "#363646";
|
|
base04 = "#727169";
|
|
base05 = "#DCD7BA";
|
|
base06 = "#C8C093";
|
|
base07 = "#717C7C";
|
|
base08 = "#C34043";
|
|
base09 = "#FFA066";
|
|
base0A = "#C0A36E";
|
|
base0B = "#76946A";
|
|
base0C = "#6A9589";
|
|
base0D = "#7E9CD8";
|
|
base0E = "#957FB8";
|
|
base0F = "#D27E99";
|
|
};
|
|
};
|
|
|
|
}
|