fixed wallpapers

This commit is contained in:
Bryan Ramos 2024-05-08 21:20:40 -04:00
parent 19396dac8a
commit 850bcbf66b
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
2 changed files with 7 additions and 2 deletions

View file

@ -17,13 +17,13 @@ in
HDMI-A-1 = { HDMI-A-1 = {
resolution = "1920x1080"; resolution = "1920x1080";
position = "0,0"; position = "0,0";
bg = "/etc/nixos/src/user/modules/gui/desktopEnvironments/wallpapers fill"; bg = "~/Pictures/wallpapers fill";
}; };
DP-1 = { DP-1 = {
resolution = "1080x1920"; resolution = "1080x1920";
position = "1920,0"; position = "1920,0";
transform = "90"; transform = "90";
bg = "/etc/nixos/src/user/modules/gui/desktopEnvironments/wallpapers fill"; bg = "~/Pictures/wallpapers fill";
}; };
}; };
modifier = "Mod1"; modifier = "Mod1";

View file

@ -54,5 +54,10 @@ in
}; };
fonts.fontconfig.enable = true; fonts.fontconfig.enable = true;
home.file."~/Pictures/wallpapers" = {
source = ../../wallpapers;
recursive = true;
};
}; };
} }