This commit is contained in:
Kopatz
2024-06-03 18:25:20 +02:00
parent de415c09a9
commit 3e21d41ff0
43 changed files with 3004 additions and 31 deletions

22
home-manager/i3.nix Normal file
View File

@@ -0,0 +1,22 @@
{ pkgs, config, ...}: {
home.file.".config/i3" = {
enable = true;
recursive = true;
source = ../.config/i3;
target = ".config/i3";
};
home.file.".config/picom" = {
enable = true;
recursive = true;
source = ../.config/picom;
target = ".config/picom";
};
home.file.".config/wallpapers" = {
enable = true;
recursive = true;
source = ../.config/wallpapers;
target = ".config/wallpapers";
};
}