furthre config on laptop

This commit is contained in:
2025-07-14 15:12:21 +02:00
parent 5b2b64611e
commit e2f428bc64
54 changed files with 1479 additions and 87 deletions
+26
View File
@@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
{
home.packages= with pkgs; [
rofi-wayland
rofi-bluetooth
networkmanager_dmenu
];
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
theme = "glue_pro_blue";
terminal = "${pkgs.alacritty}/bin/alacritty";
extraConfig = {
modi = "combi,window,drun,ssh";
show-icons = true;
drun-display-format = "{icon} {name}";
disable-history = false;
hide-scrollbar = true;
display-drun = " Apps ";
sidebar-mode = true;
};
};
}