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