Migrate old home-manager modules

This commit is contained in:
2025-04-22 23:47:08 +02:00
parent dcdc97aad8
commit 532bbe8675
126 changed files with 1527 additions and 2065 deletions
+16
View File
@@ -0,0 +1,16 @@
{
lib,
pkgs,
...
}:
{
# this would need you to config rofi using home-manager
# programs.rofi = { enable = true; };
home.packages = with pkgs; [ rofi ];
home.file = {
".config/rofi/config.rasi".source = ./config.rasi;
};
}