re-organize home-modules

This commit is contained in:
2024-10-19 14:35:08 +02:00
parent f1d7b850fa
commit b95ebd8efc
52 changed files with 36 additions and 30 deletions

View File

@@ -0,0 +1,10 @@
{
config,
pkgs,
...
}: {
programs.rofi = {
location = "left";
theme = "${pkgs.rofi}/share/rofi/themes/sidebar-v2.rasi";
};
}

View File

@@ -0,0 +1,6 @@
{...}: {
imports = [
./config.nix
./rofi.nix
];
}

View File

@@ -0,0 +1,3 @@
{...}: {
programs.rofi.enable = true;
}