fix: various small things

nixos
Moritz Böhme 2024-04-22 09:35:04 +02:00
parent 7ddd60e36c
commit 05e7391cb4
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
3 changed files with 9 additions and 3 deletions

View File

@ -54,7 +54,6 @@ in
".local/share/nvim" ".local/share/nvim"
".local/share/zoxide" ".local/share/zoxide"
".local/state/nvim" ".local/state/nvim"
".local/state/tofi-history"
".mozilla" ".mozilla"
"Documents" "Documents"
"Downloads" "Downloads"
@ -69,6 +68,7 @@ in
".local/share/fish/fish_history" ".local/share/fish/fish_history"
".local/share/nix/trusted-settings.json" ".local/share/nix/trusted-settings.json"
".parallel/will-cite" ".parallel/will-cite"
".local/state/tofi-history"
]; ];
}; };
users.root = { users.root = {

View File

@ -16,7 +16,6 @@ in
systemd.user.services.foot.Service.Environment = "PATH=/run/current-system/sw/bin/"; systemd.user.services.foot.Service.Environment = "PATH=/run/current-system/sw/bin/";
programs.foot = { programs.foot = {
enable = true; enable = true;
server.enable = true;
settings = { settings = {
main = { main = {
term = "xterm-256color"; term = "xterm-256color";

View File

@ -8,7 +8,14 @@ let
script = pkgs.writeShellApplication { script = pkgs.writeShellApplication {
name = "wallpaper"; name = "wallpaper";
runtimeInputs = with pkgs; [ findutils coreutils feh swaybg fzf viu ]; runtimeInputs = with pkgs; [
findutils
coreutils
feh
swaybg
fzf
(viu.override { withSixel = true; })
];
text = builtins.readFile ./wallpaper.sh; text = builtins.readFile ./wallpaper.sh;
}; };
in in