Modularize teams sops yazi

This commit is contained in:
DashieTM 2024-08-24 13:25:08 +02:00
parent 7730cbef59
commit c73cb37278
75 changed files with 3023 additions and 3573 deletions

View file

@ -11,37 +11,31 @@
};
config = lib.mkIf config.mods.hyprland.hyprlock.enable
(lib.optionalAttrs (options?xdg.configFile) {
(lib.optionalAttrs (options ? xdg.configFile) {
home.packages = with pkgs; [ hyprlock ];
programs.hyprlock = lib.mkIf config.mods.hyprland.hyprlock.enable {
enable = true;
settings = {
background = [
{
monitor = "";
path = "";
color = "rgba(26, 27, 38, 1.0)";
}
];
background = [{
monitor = "";
path = "";
color = "rgba(26, 27, 38, 1.0)";
}];
input-field = [
{
monitor = "${config.conf.monitor}";
input-field = [{
monitor = "${config.conf.monitor}";
placeholder_text = "password or something";
}
];
placeholder_text = "password or something";
}];
label = [
{
monitor = "${config.conf.monitor}";
text = "$TIME";
font_size = 50;
position = "0, 200";
valign = "center";
halign = "center";
}
];
label = [{
monitor = "${config.conf.monitor}";
text = "$TIME";
font_size = 50;
position = "0, 200";
valign = "center";
halign = "center";
}];
};
};
});