[NixOS] Fix warnings

This commit is contained in:
2025-11-21 11:40:52 -08:00
parent bfd4a53b85
commit d98e7ae597
4 changed files with 19 additions and 7 deletions

View File

@@ -72,6 +72,7 @@ makeEnable config "myModules.base" true {
services.locate.enable = true;
virtualisation.docker.enable = true;
services.orca.enable = false;
virtualisation.podman = {
enable = true;

View File

@@ -11,7 +11,22 @@
programs.home-manager.enable = true;
programs.ssh = {
enable = true;
enableDefaultConfig = false;
matchBlocks = {
"*" = {
forwardAgent = true;
addKeysToAgent = "no";
compression = false;
serverAliveInterval = 0;
serverAliveCountMax = 3;
hashKnownHosts = false;
userKnownHostsFile = "~/.ssh/known_hosts";
controlMaster = "no";
controlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no";
};
};
};
services.gpg-agent = {

View File

@@ -1,6 +1,4 @@
{ makeEnable, config, ... }:
makeEnable config "myModules.laptop" true {
services.logind = {
lidSwitchExternalPower = "ignore";
};
services.logind.settings.Login.HandleLidSwitchExternalPower = "ignore";
}

View File

@@ -16,7 +16,5 @@ makeEnable config "myModules.plasma" true {
# sddm-astronaut
];
};
services.xserver = {
desktopManager.plasma6.enable = true;
};
services.desktopManager.plasma6.enable = true;
}