mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2026-02-05 05:41:57 -05:00
fix:amd-pstate-epp
add:embedded style:misc
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
tsukimi
|
||||
];
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
syncthing
|
||||
];
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
lxqt.lxqt-policykit
|
||||
];
|
||||
}
|
||||
21
home/wayland/polkit-agent.nix
Normal file
21
home/wayland/polkit-agent.nix
Normal 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"];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user