Reorganize packages list, replace rofi-wayland with wofi, add dolphin, add polkit-kde-agent, enable services for power-profiles-daemon, sddm (w/ autologin)

This commit is contained in:
Joey Hafner 2024-10-14 14:18:10 -07:00
parent 445ffe2c2c
commit ba536e121e

View File

@ -1,15 +1,28 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
waybar
mako
libnotify
mako libnotify
swww
rofi-wayland
wofi
polkit-kde-agent
dolphin
];
programs.hyprland = {
enable = true;
package = pkgs.hyprland;
portalPackage = pkgs.xdg-desktop-portal-hyprland;
};
services.power-profiles-daemon = {
enable = true;
};
services.displayManager = {
autoLogin = {
enable = true;
user = "joey";
};
sddm = {
enable = true;
wayland.enable = true;
};
};
}