rofi dotfiles
This commit is contained in:
parent
e61480fd63
commit
d7825e1058
2 changed files with 9 additions and 5 deletions
|
@ -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;
|
||||||
|
|
7
home/nomad/dotfiles/rofi.nix
Normal file
7
home/nomad/dotfiles/rofi.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ inputs, ... }:
|
||||||
|
{
|
||||||
|
home.file.".config/rofi" = {
|
||||||
|
source = "${inputs.dotfiles}/rofi";
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue