Home Gen144 @ 2024-04-28-19:30

This commit is contained in:
Jonas Röger 2024-04-28 19:30:05 +02:00
parent 7968e4fe02
commit bf40f22d7f
4 changed files with 55 additions and 1 deletions

View File

@ -9,11 +9,11 @@
./firefox.nix
./hyprland
./kitty
./rofi
./ssh.nix
./themes/gtk
./themes/qt
./waybar
./wofi
./yubikey.nix
./zsh.nix
];

View File

@ -0,0 +1,45 @@
{...}: {
programs.wofi.settings = {
location = "center";
allow_images = true;
allow_markup = true;
};
programs.wofi.style = ''
window {
margin: 5px;
border: 2px solid red;
background-color: red;
}
#input {
margin: 5px;
border: 2px solid blue;
background-color: blue;
}
#inner-box {
margin: 5px;
border: 2px solid yellow;
background-color: yellow;
}
#outer-box {
margin: 5px;
border: 2px solid green;
background-color: green;
}
#scroll {
margin: 5px;
border: 2px solid orange;
background-color: orange;
}
#text {
margin: 5px;
border: 2px solid cyan;
background-color: cyan;
}
'';
}

View File

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

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

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