This commit is contained in:
Reid 2026-01-11 23:47:19 -08:00
parent 42ab485000
commit 34f1d4593f
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
5 changed files with 17 additions and 14 deletions

View file

@ -28,12 +28,18 @@ in {
colorScript = nix-colors-lib.shellThemeFromScheme { scheme = config.colorScheme; };
in {
enable = true;
plugins = with pkgs.fishPlugins; [
{ name = "fzf-fish"; src = fzf-fish.src; }
{ name = "grc"; src = grc.src; }
{ name = "tide"; src = tide.src; }
{ name = "done"; src = done.src; }
{ name = "autopair"; src = autopair.src; }
plugins = let
mkPlugin = name: {
inherit name;
inherit (pkgs.fishPlugins.${name}) src;
};
in builtins.map (p: mkPlugin p) [
"autopair"
"done"
"forgit"
"fzf-fish"
"grc"
"tide"
];
interactiveShellInit = ''
${lib.getExe pkgs.nix-your-shell} fish | source

View file

@ -18,7 +18,6 @@ in {
no-keepaspect-window = ""; # tiling doesn't play nice..
osc = "no";
border = "no";
gpu-context = "wayland"; # TODO: remove, forced by a regression
};
scriptOpts = {

View file

@ -9,16 +9,15 @@ in {
};
config = mkIf cfg.enable {
# declare sync folders & devices here
# edit: turns out you can't with hm??
hm.services.syncthing = {
enable = true;
tray = {
enable = true;
package = pkgs.syncthingtray-minimal;
command = "syncthingtray --wait";
};
# TODO: add folders here
};
};
}