dont use literal programs, use paths
Some checks are pending
/ ci (push) Waiting to run

This commit is contained in:
Callum Leslie 2024-09-12 23:16:33 +01:00
parent cd0e067dad
commit 1d10befe61
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
10 changed files with 99 additions and 367 deletions

View file

@ -1,4 +1,8 @@
{inputs, ...}: {
{
inputs,
cLib,
...
}: {
programs.hyprlock.enable = true;
security.pam.services.hyprlock = {};
home-manager = {
@ -11,6 +15,6 @@
inputs.self.homeManagerModules.trayscale
];
users.c = import ../../home/c;
extraSpecialArgs = {inherit inputs;};
extraSpecialArgs = {inherit inputs cLib;};
};
}