mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 21:23:55 -05:00
35 lines
768 B
Nix
35 lines
768 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [
|
|
brightnessctl
|
|
hyprcursor
|
|
hypridle
|
|
hyprlock
|
|
hyprpaper
|
|
hyprshade
|
|
hyprshot
|
|
playerctl
|
|
udiskie
|
|
];
|
|
|
|
services.mako = {
|
|
enable = true;
|
|
font = "DroidSansM Nerd Font Mono 11";
|
|
backgroundColor = "#00000080";
|
|
textColor = "#FFFFFF";
|
|
borderRadius = 10;
|
|
defaultTimeout = 10000;
|
|
padding = "15";
|
|
};
|
|
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
extraConfig = builtins.readFile ./hyprland.conf;
|
|
};
|
|
|
|
xdg.configFile."hypr/hypridle.conf".source = ./hypridle.conf;
|
|
xdg.configFile."hypr/hyprlock.conf".source = ./hyprlock.conf;
|
|
}
|