diff --git a/home/nomad/dotfiles/default.nix b/home/nomad/dotfiles/default.nix index c4df798..bc401cb 100644 --- a/home/nomad/dotfiles/default.nix +++ b/home/nomad/dotfiles/default.nix @@ -2,13 +2,10 @@ imports = [ ./bat.nix ./kitty.nix + ./rofi.nix + ./nvim.nix ]; - home.file.".config/nvim" = { - source = "${inputs.dotfiles}/nvim"; - recursive = true; - }; - home.file.".config/mako" = { source = "${inputs.dotfiles}/mako"; recursive = true; diff --git a/home/nomad/dotfiles/rofi.nix b/home/nomad/dotfiles/rofi.nix new file mode 100644 index 0000000..f6c4e86 --- /dev/null +++ b/home/nomad/dotfiles/rofi.nix @@ -0,0 +1,7 @@ +{ inputs, ... }: +{ + home.file.".config/rofi" = { + source = "${inputs.dotfiles}/rofi"; + recursive = true; + }; +}