fix:amd-pstate-epp

add:embedded

style:misc
This commit is contained in:
dichgrem
2026-01-21 23:06:05 +08:00
parent a2485dca51
commit 9cf9516382
8 changed files with 37 additions and 23 deletions

View File

@@ -1,5 +0,0 @@
{pkgs, ...}: {
home.packages = with pkgs; [
tsukimi
];
}

View File

@@ -1,5 +0,0 @@
{pkgs, ...}: {
home.packages = with pkgs; [
syncthing
];
}

View File

@@ -1,5 +0,0 @@
{pkgs, ...}: {
home.packages = with pkgs; [
lxqt.lxqt-policykit
];
}

View File

@@ -0,0 +1,21 @@
{pkgs, ...}: {
home.packages = with pkgs; [
polkit_gnome
];
systemd.user.services.polkit-gnome-authentication-agent = {
Unit = {
Description = "PolicyKit GNOME Authentication Agent";
PartOf = ["graphical-session.target"];
After = ["graphical-session.target"];
};
Service = {
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
Restart = "on-failure";
Slice = "session.slice";
};
Install = {
WantedBy = ["graphical-session.target"];
};
};
}