nixos/home/semita.nix

64 lines
1.1 KiB
Nix
Raw Normal View History

2024-06-15 18:37:00 +01:00
{ ...
2024-05-30 21:20:39 +01:00
}: {
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
2024-06-13 23:33:14 +01:00
./common/optional/desktop/dwm
./common/optional/desktop/common/themes/standard-dark.nix
2024-05-30 21:20:39 +01:00
];
2024-06-19 10:33:04 +01:00
# ------
# | 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;
}
];
2024-05-31 00:17:16 +01:00
2024-06-15 17:22:54 +01:00
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";
};
};
2024-06-02 14:30:14 +01:00
2024-05-30 21:20:39 +01:00
}