diff --git a/config/shell/zsh/002-fzf.zsh b/config/shell/zsh/002-fzf.zsh new file mode 100644 index 0000000..b2afbe9 --- /dev/null +++ b/config/shell/zsh/002-fzf.zsh @@ -0,0 +1,4 @@ +if [ -n "${commands[fzf-share]}" ]; then + source "$(fzf-share)/key-bindings.zsh" + source "$(fzf-share)/completion.zsh" +fi diff --git a/hosts/reykjavik/default.nix b/hosts/reykjavik/default.nix index ea69e30..8ac44c9 100644 --- a/hosts/reykjavik/default.nix +++ b/hosts/reykjavik/default.nix @@ -79,4 +79,6 @@ in app.discord.enable = true; }; + # - Extra / Temporary -------------------------- + fonts.fonts = []; } diff --git a/modules/system/sshfs.nix b/modules/system/sshfs.nix new file mode 100644 index 0000000..4331683 --- /dev/null +++ b/modules/system/sshfs.nix @@ -0,0 +1,15 @@ +{ config, lib, pkgs, self, ... }: + +let + cfg = config.samfelag.modules.system.sshfs; +in +{ + options.samfelag.modules.system.sshfs = { + enable = lib.mkEnableOption "sshfs"; + }; + config = lib.mkIf cfg.enable { + environment.systemPackages = with pkgs; [ + sshfs + ]; + }; +}