Merge branch 'main' of github.com:itepastra/nixconf
This commit is contained in:
commit
939b178afa
1 changed files with 15 additions and 2 deletions
|
|
@ -16,7 +16,7 @@
|
|||
];
|
||||
|
||||
boot = rec {
|
||||
kernelPackages = pkgs.linuxPackages_6_8;
|
||||
kernelPackages = pkgs.linuxPackages_latest;
|
||||
extraModulePackages = with kernelPackages; [
|
||||
v4l2loopback
|
||||
];
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
'';
|
||||
|
||||
loader = {
|
||||
timeout = lib.mkDefault 3;
|
||||
timeout = 3;
|
||||
efi.canTouchEfiVariables = true;
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
|
|
@ -325,6 +325,19 @@
|
|||
restartIfChanged = false;
|
||||
};
|
||||
};
|
||||
user.services.polkit-gnome-authentication-agent-1 = {
|
||||
description = "polkit-gnome-authentication-agent-1";
|
||||
wantedBy = [ "graphical-session.target" ];
|
||||
wants = [ "graphical-session.target" ];
|
||||
after = [ "graphical-session.target" ];
|
||||
serviceConfig = {
|
||||
Type = "simple";
|
||||
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
|
||||
Restart = "on-failure";
|
||||
RestartSec = 1;
|
||||
TimeoutStopSec = 10;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
virtualisation.docker = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue