rofi dotfiles

This commit is contained in:
nomadics9 2024-11-05 21:22:41 +03:00
parent e61480fd63
commit d7825e1058
2 changed files with 9 additions and 5 deletions

View file

@ -2,13 +2,10 @@
imports = [ imports = [
./bat.nix ./bat.nix
./kitty.nix ./kitty.nix
./rofi.nix
./nvim.nix
]; ];
home.file.".config/nvim" = {
source = "${inputs.dotfiles}/nvim";
recursive = true;
};
home.file.".config/mako" = { home.file.".config/mako" = {
source = "${inputs.dotfiles}/mako"; source = "${inputs.dotfiles}/mako";
recursive = true; recursive = true;

View file

@ -0,0 +1,7 @@
{ inputs, ... }:
{
home.file.".config/rofi" = {
source = "${inputs.dotfiles}/rofi";
recursive = true;
};
}