Initial commit lol

This commit is contained in:
langedev 2023-11-19 19:03:46 -08:00
parent a2318e586a
commit ed3d2e8ef8
18 changed files with 375 additions and 0 deletions

30
programs/rofi/default.nix Normal file
View file

@ -0,0 +1,30 @@
{ config, pkgs, ... }:
{
programs.rofi.enable = true;
programs.rofi.package = pkgs.rofi-wayland;
programs.wofi.settings = {
show = "dmenu"; # Default to dmenu
prompt = "";
hide_scroll = true;
insensitive = true;
location = "bottom_right";
dynamic_lines = true;
yoffset = -100;
xoffset = -40;
height = "50%";
width = "50%";
};
programs.wofi.style = ''
window {
background: rgba(0, 0, 0, 255);
font-size: 4rem;
}
#entry, #input {
margin: 2px;
background: #FFFFFF;
border-width: 2px;
border-color: #000000;
}
'';
}