init
This commit is contained in:
commit
498f3050d5
145 changed files with 2964 additions and 0 deletions
4
home/services/media/playerctl.nix
Normal file
4
home/services/media/playerctl.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = [pkgs.playerctl];
|
||||
services.playerctld.enable = true;
|
||||
}
|
19
home/services/system/polkit-agent.nix
Normal file
19
home/services/system/polkit-agent.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{pkgs, ...}: {
|
||||
systemd.user.services.polkit-gnome-authentication-agent-1 = {
|
||||
Unit.Description = "polkit-gnome-authentication-agent-1";
|
||||
|
||||
Install = {
|
||||
WantedBy = ["graphical-session.target"];
|
||||
Wants = ["graphical-session.target"];
|
||||
After = ["graphical-session.target"];
|
||||
};
|
||||
|
||||
Service = {
|
||||
Type = "simple";
|
||||
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
||||
Restart = "on-failure";
|
||||
RestartSec = 1;
|
||||
TimeoutStopSec = 10;
|
||||
};
|
||||
};
|
||||
}
|
3
home/services/system/udiskie.nix
Normal file
3
home/services/system/udiskie.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
services.udiskie.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue