mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
fix(nixos): repair some broken relative paths to build successfully
This commit is contained in:
parent
fa7e3d178e
commit
ccd6199d95
2 changed files with 3 additions and 3 deletions
|
@ -67,7 +67,7 @@
|
||||||
./modules/home-manager/linux/desktop.nix
|
./modules/home-manager/linux/desktop.nix
|
||||||
./modules/home-manager/linux/programs.nix
|
./modules/home-manager/linux/programs.nix
|
||||||
./modules/home-manager/common/core.nix
|
./modules/home-manager/common/core.nix
|
||||||
./modules/home-manager/common/catppuccin.nix
|
./modules/home-manager/linux/catppuccin.nix
|
||||||
inputs.catppuccin.homeManagerModules.catppuccin
|
inputs.catppuccin.homeManagerModules.catppuccin
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -19,9 +19,9 @@
|
||||||
# xxx
|
# xxx
|
||||||
# '';
|
# '';
|
||||||
|
|
||||||
home.file.".config/neofetch/config.conf".source = ./config/neofetch.conf;
|
home.file.".config/neofetch/config.conf".source = ../../../config/neofetch.conf;
|
||||||
home.file.".wallpapers" = {
|
home.file.".wallpapers" = {
|
||||||
source = ./wallpapers;
|
source = ../../../wallpapers;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue