Move sudo configuration to security
This commit is contained in:
parent
d6f25a0f4e
commit
c8636e1d9d
2 changed files with 4 additions and 4 deletions
|
@ -1,10 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
security.sudo.extraConfig = ''
|
|
||||||
Defaults lecture="never"
|
|
||||||
'';
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
fastfetch
|
fastfetch
|
||||||
wget
|
wget
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
security.sudo.extraConfig = ''
|
||||||
|
Defaults lecture="never"
|
||||||
|
'';
|
||||||
|
|
||||||
services.clamav = {
|
services.clamav = {
|
||||||
scanner.enable = true;
|
scanner.enable = true;
|
||||||
daemon.enable = true;
|
daemon.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue