Add home manager

This commit is contained in:
2026-03-16 21:14:43 +01:00
parent 7175a457c7
commit d4b7339804
26 changed files with 740 additions and 0 deletions

13
home/wm/rofi.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
home.packages = [
pkgs.rofi-file-browser
];
programs.rofi = {
enable = true;
theme = "material";
terminal = "${pkgs.kitty}/bin/kitty";
};
}