feat: move to home.file.<name>.txt so that it's uniform (and because of errors 😭)

This commit is contained in:
Ahwx 2024-10-20 16:54:13 +02:00
parent 0768608559
commit bf957cf636

View file

@ -1,10 +1,8 @@
{ pkgs, ... }: { username, pkgs, ... }:
let
text = "rgb(251, 241, 199)";
in
{ {
home.packages = [ pkgs.hyprlock ]; home = {
xdg.configFile."hypr/hyprlock.conf".text = '' packages = [ pkgs.hyprlock ];
file."/home/${username}/.config/hypr/hyprlock.conf".text = ''
# BACKGROUND # BACKGROUND
background { background {
monitor = monitor =
@ -97,4 +95,5 @@ in
valign = center valign = center
} }
''; '';
};
} }