install lact, Linux AMDGPU Controller
This commit is contained in:
@ -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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user