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

@@ -1,6 +1,6 @@
{pkgs, ...}: {
imports = [
./modules.nix
./modules
./git.nix
];
home = {

View File

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

View File

@@ -1,14 +1,4 @@
{
monitors = [
{
name = "DVI-D-1";
width = 1920;
height = 1080;
refreshRate = 144;
workspace = "1";
primary = true;
}
];
home = {
programs = {
alacritty = {

View File

@@ -0,0 +1,18 @@
{
monitors = [
{
name = "DVI-D-1";
width = 1920;
height = 1080;
refreshRate = 144;
workspace = "1";
primary = true;
}
];
theme = {
background = {
lockscreen = "wallpaper_2";
desktop = "wallpaper_1";
};
};
}