fix: various small things
parent
7ddd60e36c
commit
05e7391cb4
|
@ -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 = {
|
||||||
|
|
|
@ -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";
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue