- Removed Swaylock - Added Hyprlock with Catppuccin theme. - Replaced commands to swaylock with hyprlock. - Added JetBrains Mono Nerd Font
26 lines
523 B
Nix
26 lines
523 B
Nix
# System configurations for Hyprland. For home configs, see ./home/hyprland
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./waybar.nix
|
|
./wallpaper.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
swaynotificationcenter
|
|
xdg-desktop-portal-hyprland
|
|
hyprpolkitagent # Auth deamon providing modals for password auth
|
|
];
|
|
|
|
programs = {
|
|
hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
};
|
|
hyprlock.enable = true; # Lock screen
|
|
};
|
|
|
|
services.hypridle.enable = true; # Lock when unused
|
|
}
|