mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
fixed wallpapers path
This commit is contained in:
parent
f4787dc412
commit
ace324425d
6 changed files with 7 additions and 3 deletions
|
|
@ -5,6 +5,9 @@ let
|
||||||
name = "bryan";
|
name = "bryan";
|
||||||
email = "bryan@ramos.codes";
|
email = "bryan@ramos.codes";
|
||||||
shell = pkgs.bash;
|
shell = pkgs.bash;
|
||||||
|
|
||||||
|
wallpaper = "mountains.jpg";
|
||||||
|
|
||||||
groups = [ "wheel" "networkmanager" "home-manager" "input" ];
|
groups = [ "wheel" "networkmanager" "home-manager" "input" ];
|
||||||
|
|
||||||
sshKeys = [
|
sshKeys = [
|
||||||
|
|
|
||||||
|
|
@ -17,13 +17,13 @@ in
|
||||||
HDMI-A-1 = {
|
HDMI-A-1 = {
|
||||||
resolution = "1920x1080";
|
resolution = "1920x1080";
|
||||||
position = "0,0";
|
position = "0,0";
|
||||||
bg = "~/Pictures/wallpapers fill";
|
bg = "~/Pictures/wallpapers/${config.user.wallpaper} fill";
|
||||||
};
|
};
|
||||||
DP-1 = {
|
DP-1 = {
|
||||||
resolution = "1080x1920";
|
resolution = "1080x1920";
|
||||||
position = "1920,0";
|
position = "1920,0";
|
||||||
transform = "90";
|
transform = "90";
|
||||||
bg = "~/Pictures/wallpapers fill";
|
bg = "~/Pictures/wallpapers/${config.user.wallpaper} fill";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
modifier = "Mod1";
|
modifier = "Mod1";
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ in
|
||||||
|
|
||||||
fonts.fontconfig.enable = true;
|
fonts.fontconfig.enable = true;
|
||||||
|
|
||||||
home.file."~/Pictures/wallpapers" = {
|
home.file."Pictures/wallpapers" = {
|
||||||
source = ../../wallpapers;
|
source = ../../wallpapers;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
Before Width: | Height: | Size: 609 KiB After Width: | Height: | Size: 609 KiB |
1
wallpapers
Symbolic link
1
wallpapers
Symbolic link
|
|
@ -0,0 +1 @@
|
||||||
|
src/user/modules/gui/wallpapers/
|
||||||
Loading…
Add table
Add a link
Reference in a new issue