try out i3 config from: https://github.com/jifuwater/Cattendeavou
This commit is contained in:
22
home-manager/i3.nix
Normal file
22
home-manager/i3.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user