better rofi
This commit is contained in:
parent
d2941a09ca
commit
e6136c6492
4 changed files with 32 additions and 1 deletions
|
@ -3,6 +3,8 @@
|
|||
networking.hostName = "foureighty";
|
||||
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxPackagesFor pkgs.linux_latest_hardened;
|
||||
|
||||
initrd.luks.devices = [
|
||||
{
|
||||
name = "root";
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
./i3.nix
|
||||
./dunst.nix
|
||||
./autorandr.nix
|
||||
./rofi.nix
|
||||
];
|
||||
|
||||
services = {
|
||||
|
|
29
nixos/i3/rofi.nix
Normal file
29
nixos/i3/rofi.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
font = "Fira Code 12";
|
||||
separator = "solid";
|
||||
scrollbar = false;
|
||||
colors = {
|
||||
window = {
|
||||
background = "#002b36";
|
||||
border = "#073642";
|
||||
separator = "#002b36";
|
||||
};
|
||||
|
||||
rows = {
|
||||
normal = {
|
||||
background = "#002b36";
|
||||
foreground = "#839496";
|
||||
backgroundAlt = "argb:58455a64";
|
||||
highlight = {
|
||||
background = "#002b36";
|
||||
foreground = "#fafbfc";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -11,7 +11,6 @@
|
|||
enableZshIntegration = true;
|
||||
};
|
||||
|
||||
rofi.enable = true;
|
||||
fzf.enable = true;
|
||||
chromium.enable = true;
|
||||
go.enable = true;
|
||||
|
|
Loading…
Reference in a new issue