Home Gen141 @ 2024-04-28-18:46

This commit is contained in:
Jonas Röger 2024-04-28 18:46:29 +02:00
parent 9616c1bc78
commit d3a4442662
4 changed files with 16 additions and 0 deletions

View File

@ -9,6 +9,7 @@
./firefox.nix
./hyprland
./kitty
./rofi
./ssh.nix
./themes/gtk
./themes/qt

View File

@ -0,0 +1,6 @@
{config, ...}: {
programs.rofi = {
location = "left";
theme = "sidebar by Qball";
};
}

View File

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

3
home/jonas/rofi/rofi.nix Normal file
View File

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