This commit is contained in:
2026-06-23 15:25:17 -07:00
commit 94b1c71b1e
32 changed files with 4504 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
# 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
];
}