some minor refactor

This commit is contained in:
2025-01-02 17:53:12 +01:00
parent d44ad67865
commit eb6727e458
20 changed files with 139 additions and 51 deletions

View File

@@ -9,7 +9,7 @@
# in
{
imports = [
./modules.nix
./modules
./git.nix
];
# ++ lib.optionals isCnixpad [./cpmodules.nix];

View File

@@ -0,0 +1,6 @@
{
imports = [
./home.nix
./options.nix
];
}

View File

@@ -1,23 +1,4 @@
{
monitors = [
{
name = "DP-3";
width = 2560;
height = 1440;
refreshRate = 240;
bitDepth = 10;
workspace = "1";
primary = true;
}
{
name = "eDP-1";
width = 1920;
height = 1200;
refreshRate = 60;
workspace = "1";
primary = false;
}
];
home = {
programs = {
aerc = {

View File

@@ -0,0 +1,27 @@
{
monitors = [
{
name = "DP-3";
width = 2560;
height = 1440;
refreshRate = 240;
bitDepth = 10;
workspace = "1";
primary = true;
}
{
name = "eDP-1";
width = 1920;
height = 1200;
refreshRate = 60;
workspace = "1";
primary = false;
}
];
theme = {
background = {
lockscreen = "wallpaper_2";
desktop = "wallpaper_1";
};
};
}