refactor: move sioyek into it's own file

This commit is contained in:
buffet 2023-03-06 13:25:11 +01:00
parent b1493bcc49
commit f3d98b311d
3 changed files with 12 additions and 1 deletions

View file

@ -50,7 +50,6 @@ in {
radare2 radare2
ripgrep ripgrep
rr rr
sioyek
strace strace
tokei tokei
trash-cli trash-cli

View file

@ -12,6 +12,7 @@ _: {
./newsboat.nix ./newsboat.nix
./nvim.nix ./nvim.nix
./pipewire.nix ./pipewire.nix
./sioyek.nix
./sway.nix ./sway.nix
]; ];
} }

11
programs/sioyek.nix Normal file
View file

@ -0,0 +1,11 @@
_: {
home-manager.users.buffet = {
programs.sioyek = {
enable = true;
#config = with import ../theme.nix; {
# background_color = makeRgbFloat primary.background;
#};
};
};
}