partial host migrations to flake parts

This commit is contained in:
Callum Leslie 2026-04-22 21:28:05 +01:00
parent 1f779fff49
commit 091cfbdf96
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
13 changed files with 209 additions and 165 deletions

View file

@ -1,10 +1,7 @@
{ inputs, ... }:
{
inputs,
cLib,
...
}: {
programs.hyprlock.enable = true;
security.pam.services.hyprlock = {};
security.pam.services.hyprlock = { };
home-manager = {
sharedModules = [
{
@ -16,6 +13,6 @@
#inputs.self.homeManagerModules.trayscale
];
users.c = import ../../home/c;
extraSpecialArgs = {inherit inputs cLib;};
extraSpecialArgs = { inherit inputs; };
};
}