hm
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
};
|
||||
imports = [
|
||||
./git
|
||||
./hypr
|
||||
./gui
|
||||
./shell/cnst.nix
|
||||
./appearance
|
||||
];
|
||||
|
||||
@@ -4,7 +4,10 @@
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [../../extra/mako];
|
||||
imports = [
|
||||
../../extra/mako
|
||||
./rofi.nix
|
||||
];
|
||||
|
||||
xdg.portal = let
|
||||
hyprland = config.wayland.windowManager.hyprland.package;
|
||||
@@ -23,6 +26,8 @@
|
||||
];
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
package = pkgs.hyprland;
|
||||
xwayland.enable = true;
|
||||
extraConfig = ''
|
||||
${builtins.readFile ./hyprland.conf}
|
||||
'';
|
||||
8
home/core/gui/rofi.nix
Normal file
8
home/core/gui/rofi.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{pkgs, ...}: {
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
package = pkgs.rofi-wayland-unwrapped;
|
||||
configPath = "$XDG_CONFIG_HOME/rofi/config.rasi";
|
||||
font = "Rec Mono Linear 11";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user