diff --git a/home/graphical/fuzzel.nix b/home/graphical/fuzzel.nix index d4e7dac..2ced0ad 100644 --- a/home/graphical/fuzzel.nix +++ b/home/graphical/fuzzel.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ lib, osConfig, ... }: { programs.fuzzel = { enable = true; @@ -9,7 +9,7 @@ font = "Hack:weight=bold"; line-height = 30; fields = "name,generic,comment"; - terminal = "${pkgs.foot}/bin/foot -e"; + terminal = lib.my.getExe osConfig.modules.system.roles.desktop.terminal; prompt = "❯ "; layer = "overlay"; }; diff --git a/home/hyprland/default.nix b/home/hyprland/default.nix index e2711aa..e5dbc68 100644 --- a/home/hyprland/default.nix +++ b/home/hyprland/default.nix @@ -148,8 +148,8 @@ mkIf osConfig.programs.hyprland.enable { bind = [ "$mod, D, exec, ${pkgs.fuzzel}/bin/fuzzel" - "$mod, E, exec, ${pkgs.nautilus}/bin/nautilus" - "$mod, Return, exec, ${pkgs.foot}/bin/foot" + "$mod, E, exec, ${lib.my.getExe osConfig.system.roles.desktop.filemanager}" + "$mod, Return, exec, ${lib.my.getExe osConfig.modules.system.roles.desktop.terminal}" "$mod SHIFT, Q, killactive," "$mod, V, togglefloating" "$mod SHIFT, P, exec, ${config.programs.rofi.package}/bin/rofi -show p -modi p:${pkgs.rofi-power-menu}/bin/rofi-power-menu" diff --git a/home/rofi/default.nix b/home/rofi/default.nix index 1ed208e..8073a36 100644 --- a/home/rofi/default.nix +++ b/home/rofi/default.nix @@ -2,6 +2,7 @@ pkgs, config, lib, + osConfig, ... }: lib.mkIf config.programs.rofi.enable { @@ -13,7 +14,7 @@ lib.mkIf config.programs.rofi.enable { package = pkgs.rofi-wayland.override { inherit plugins; }; plugins = [ pkgs.rofi-calc ]; theme = "${conf}/themes/rounded-gray-dark.rasi"; - terminal = "${pkgs.foot}/bin/foot"; + terminal = lib.my.getExe osConfig.modules.system.roles.desktop.terminal; extraConfig = { modes = [ "combi" @@ -23,7 +24,7 @@ lib.mkIf config.programs.rofi.enable { "run" # WARNING: ABI version mismatch # "calc" - "clipboard:${lib.my.checkPath pkgs.cliphist "cliphist-rofi-img"}" + "clipboard:${lib.my.getExe' pkgs.cliphist "cliphist-rofi-img"}" ]; matching = "fuzzy"; sort = true; diff --git a/home/scripts/default.nix b/home/scripts/default.nix index 0eeeb5f..9a6af5f 100644 --- a/home/scripts/default.nix +++ b/home/scripts/default.nix @@ -10,7 +10,7 @@ let name: word: writeFishBin name '' env --chdir ~/.nixconf ${pkgs.nh}/bin/nh os ${word} . $argv \ - && ${lib.my.checkPath pkgs.libnotify "notify-send"} nixos-rebuild "Rebuild complete" \ + && ${lib.my.getExe' pkgs.libnotify "notify-send"} nixos-rebuild "Rebuild complete" \ -a nixos-rebuild \ -i ${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg ''; diff --git a/home/sway/default.nix b/home/sway/default.nix index 0327cd7..bee2a93 100644 --- a/home/sway/default.nix +++ b/home/sway/default.nix @@ -8,6 +8,9 @@ }: let inherit (lib) mapAttrs; + desktop = osConfig.modules.system.roles.desktop; + term = lib.my.getExe desktop.terminal; + filemanager = lib.my.getExe desktop.filemanager; in lib.mkIf osConfig.programs.sway.enable { @@ -16,8 +19,6 @@ lib.mkIf osConfig.programs.sway.enable { wayland.windowManager.sway = let - term = "${pkgs.foot}/bin/foot"; - filemanager = "${pkgs.nautilus}/bin/nautilus"; colors = { lavender = "#babbf1"; black = "#000000"; @@ -69,7 +70,6 @@ lib.mkIf osConfig.programs.sway.enable { # Make focused window fullscreen "${mod}+f" = "fullscreen"; # Start launcher - #"${mod}+d" = "exec rofi -config ${homeDirectory}/.config/rofi/config.rasi -show combi -automatic-save-to-history | xargs swaymsg exec --"; "${mod}+d" = "exec ${pkgs.fuzzel}/bin/fuzzel"; "${mod}+s" = "exec rofi -show clipboard -show-icons"; # Toggle the current focus between tiling and floating mode diff --git a/home/terminal/fish/default.nix b/home/terminal/fish/default.nix index f112e93..2ea78c7 100644 --- a/home/terminal/fish/default.nix +++ b/home/terminal/fish/default.nix @@ -1,6 +1,6 @@ { pkgs, lib, ... }: let - inherit (lib.my) checkPath; + inherit (lib.my) getExe'; in { programs.fish = { @@ -11,7 +11,7 @@ in functions = { gitignore = "curl -sL https://www.gitignore.io/api/$argv"; mv-bad-creation-date = '' - ${checkPath pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]" + ${getExe' pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]" ''; rename-images = '' set -f input "$PWD/$argv[1]" @@ -19,7 +19,7 @@ in if not test -d $input echo "input is not a directory" else - ${checkPath pkgs.exiftool "exiftool"} -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}" + ${getExe' pkgs.exiftool "exiftool"} -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}" end ''; fish_prompt = builtins.readFile ./fish_prompt.fish; diff --git a/hosts/brontes/home.nix b/hosts/brontes/home.nix index 7d20d31..8dcd56c 100644 --- a/hosts/brontes/home.nix +++ b/hosts/brontes/home.nix @@ -49,7 +49,6 @@ pwvucontrol thunderbird keepassxc - nautilus protonmail-bridge-gui varia signal-desktop diff --git a/hosts/marr/home.nix b/hosts/marr/home.nix index 218c7c9..87df9a3 100644 --- a/hosts/marr/home.nix +++ b/hosts/marr/home.nix @@ -56,11 +56,9 @@ gimp thunderbird keepassxc - nautilus protonmail-bridge-gui varia signal-desktop - foot # Proprietary postman diff --git a/options/system/roles/desktop.nix b/options/system/roles/desktop.nix index dfacf66..5889239 100644 --- a/options/system/roles/desktop.nix +++ b/options/system/roles/desktop.nix @@ -1,9 +1,36 @@ -{ lib, ... }: +{ + pkgs, + lib, + config, + ... +}: let - inherit (lib) mkEnableOption; + inherit (lib) mkEnableOption mkOption mkIf; + inherit (lib.types) package; + cfg = config.modules.system.roles.desktop; in { options.modules.system.roles.desktop = { enable = mkEnableOption "desktop usage features"; + + terminal = mkOption { + type = package; + default = pkgs.foot; + description = '' + The default terminal emulator used on the system. + To be used by other options and configurations. + ''; + }; + filemanager = mkOption { + type = package; + default = pkgs.nautilus; + description = ''''; + }; + }; + config = mkIf cfg.enable { + environment.systemPackages = [ + cfg.terminal + cfg.filemanager + ]; }; } diff --git a/options/system/roles/terminal.nix b/options/system/roles/terminal.nix index c27ff21..55f8984 100644 --- a/options/system/roles/terminal.nix +++ b/options/system/roles/terminal.nix @@ -37,6 +37,7 @@ in unzip fd ripgrep + jnv ]; }; }; diff --git a/parts/lib/functions.nix b/parts/lib/functions.nix index f2b7aab..98c540c 100644 --- a/parts/lib/functions.nix +++ b/parts/lib/functions.nix @@ -29,15 +29,6 @@ in SystemCallArchitectures = "native"; }; - # Verify the existence of a binary inside of a derivation. - # Returns the path to the binary or throws. - checkPath = - pkg: bin: - let - abs = lib.getExe' pkg bin; - in - if builtins.pathExists abs then abs else throw "${abs} does not exist."; - mkSystem = { withSystem, @@ -79,6 +70,23 @@ in validatePath = s: if (builtins.pathExists s) then (builtins.baseNameOf s) else throw "${s} does not exist"; + # Return the main executable of a derivation, throwing if it doesn't exist + getExe = + pkg: + let + abs = lib.getExe pkg; + in + if builtins.pathExists abs then abs else throw "${abs} does not exist."; + + # Verify the existence of a binary inside of a derivation. + # Returns the path to the binary or throws. + getExe' = + pkg: bin: + let + abs = lib.getExe' pkg bin; + in + if builtins.pathExists abs then abs else throw "${abs} does not exist."; + mkVHost = name: port: ssl: { inherit name; value = {