Files
nix-config/hosts/common/features/Desktop.nix
T
2026-06-23 15:25:17 -07:00

33 lines
804 B
Nix

# This is your system's configuration file.
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
{
inputs,
lib,
config,
pkgs,
...
}: {
# --- Display & window managers ---
services.displayManager.sddm.enable = true;
services.displayManager.sddm.wayland.enable = true;
programs.niri.enable = true;
programs.skwd-wall.enable = true;
programs.gamescope.enable = true;
services.gnome.gnome-keyring.enable = true;
security.pam.services.Winter.enableGnomeKeyring = true;
programs.seahorse.enable = true;
environment.systemPackages = with pkgs; [
# -- Niri extras --
xwayland-satellite
fuzzel
waybar
brightnessctl
playerctl
mako
swaylock
inputs.awww.packages.${pkgs.stdenv.hostPlatform.system}.awww
];
}