nixcfg/homeManagerModules/desktop/wayland/default.nix
Aly Raffauf 5e801091f6
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
home: fuzzel,wlogout -> rofi (#62)
* home: add rofi module with default settings

* home/hyprland: switch to rofi

* home/waybar: switch to rofi

* home/wayland: switch to rofi

* home/sway: switch to rofi

* cleanup

* home.rofi: remove unused emoji plugin
2024-07-25 15:26:12 -04:00

40 lines
1,016 B
Nix

{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf (config.ar.home.desktop.hyprland.enable || config.ar.home.desktop.sway.enable) {
ar.home.apps = {
kitty.enable = lib.mkDefault true;
mako.enable = lib.mkDefault true;
rofi.enable = lib.mkDefault true;
swaylock.enable = lib.mkDefault true;
waybar.enable = lib.mkDefault true;
};
dconf = {
enable = true;
settings = {
"org/gnome/desktop/wm/preferences".button-layout = "";
"org/gnome/nm-applet".disable-connected-notifications = true;
};
};
home.packages = with pkgs; [
gnome.file-roller
networkmanagerapplet
swayosd
];
xdg.portal = {
enable = true;
configPackages =
lib.optional (config.ar.home.desktop.hyprland.enable) pkgs.xdg-desktop-portal-hyprland;
extraPortals =
[pkgs.xdg-desktop-portal-gtk]
++ lib.optional (config.ar.home.desktop.hyprland.enable) pkgs.xdg-desktop-portal-hyprland;
};
};
}