Adicionando o cosmic e update de rotina

This commit is contained in:
DarkGui
2025-10-17 11:43:37 -03:00
parent 8dcea6660e
commit 98b28e7419
10 changed files with 103 additions and 93 deletions
+12
View File
@@ -19,4 +19,16 @@
gamescope.enable = true;
gamemode.enable = true;
};
## LACT
environment.systemPackages = with pkgs; [lact];
systemd.services.lact = {
description = "GPU Control Daemon";
after = ["multi-user.target"];
wantedBy = ["multi-user.target"];
serviceConfig = {
ExecStart = "${pkgs.lact}/bin/lact daemon";
};
enable = true;
};
}