mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
55 lines
1 KiB
Nix
55 lines
1 KiB
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
cfg = config.programs.hyprland;
|
|
|
|
lock = pkgs.writeShellApplication {
|
|
name = "lock";
|
|
runtimeInputs = with pkgs; [swaylock];
|
|
text = ''
|
|
swaylock -c 1e1e2e
|
|
'';
|
|
};
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
security.pam.services.swaylock = {};
|
|
# programs.hyprland.package = inputs.hyprland.packages.${pkgs.system}.default;
|
|
# Optional, hint electron apps to use wayland:
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
swayidle
|
|
wlr-randr
|
|
kanshi
|
|
|
|
lock
|
|
brightnessctl
|
|
udiskie
|
|
eww-wayland
|
|
|
|
# notifications
|
|
libnotify
|
|
dunst
|
|
|
|
# utils
|
|
grimblast
|
|
wl-clipboard
|
|
rofi-wayland
|
|
pavucontrol
|
|
|
|
catppuccin-cursors.mochaDark
|
|
hyprpaper
|
|
];
|
|
|
|
nixpkgs.overlays = [
|
|
inputs.hyprland-contrib.overlays.default
|
|
inputs.nixpkgs-wayland.overlay
|
|
inputs.hyprland.overlays.default
|
|
];
|
|
};
|
|
}
|