Initial Commit

This commit is contained in:
2024-10-02 00:54:05 -05:00
commit 46ebfc5cb6
45 changed files with 4120 additions and 0 deletions

23
programs/rofi/flake.nix Normal file
View File

@@ -0,0 +1,23 @@
{
description = "Rofi Config";
inputs = {
};
outputs = { self, ... }: {
hmModule = { config, lib, pkgs, ... }: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
cycle = true;
theme = "/home/nathan/.cache/wal/colors-rofi-dark.rasi";
};
};
};
}