install lact, Linux AMDGPU Controller

This commit is contained in:
2024-06-26 19:38:10 +02:00
parent bed4d02690
commit cf3ff1d275

View File

@ -136,6 +136,7 @@
whois whois
dig dig
nodejs_20 nodejs_20
lact
# PROGRAMS # PROGRAMS
obsidian obsidian
sparrow sparrow
@ -209,4 +210,14 @@
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.11"; # Did you read the comment? system.stateVersion = "23.11"; # Did you read the comment?
# Systemd services
systemd.services.lact = {
description = "AMDGPU Control Daemon";
after = ["multi-user.target"];
wantedBy = ["multi-user.target"];
serviceConfig = {
ExecStart = "${pkgs.lact}/bin/lact daemon";
};
enable = true;
};
} }