mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
21 lines
406 B
Nix
21 lines
406 B
Nix
{
|
|
inputs,
|
|
cLib,
|
|
...
|
|
}: {
|
|
programs.hyprlock.enable = true;
|
|
security.pam.services.hyprlock = {};
|
|
home-manager = {
|
|
sharedModules = [
|
|
{
|
|
stylix.targets = {
|
|
fish.enable = false;
|
|
tmux.enable = false;
|
|
};
|
|
}
|
|
#inputs.self.homeManagerModules.trayscale
|
|
];
|
|
users.c = import ../../home/c;
|
|
extraSpecialArgs = {inherit inputs cLib;};
|
|
};
|
|
}
|