From f6cf9bea4125ce0501c72374fa4ed82dc03d3147 Mon Sep 17 00:00:00 2001 From: schererleander Date: Sun, 11 May 2025 16:48:04 +0200 Subject: chore, formatting --- modules/foot.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'modules/foot.nix') diff --git a/modules/foot.nix b/modules/foot.nix index 4fe4e4b..902dd56 100644 --- a/modules/foot.nix +++ b/modules/foot.nix @@ -1,11 +1,8 @@ { config, lib, pkgs, ... }: -let - cfg = config.foot; -in { +{ options.foot.enable = lib.mkEnableOption "Enable and configure the Foot terminal emulator"; - - config = lib.mkIf cfg.enable { + config = lib.mkIf config.foot.enable { home.packages = with pkgs; [ (nerdfonts.override { fonts = [ "SpaceMono" "IBMPlexMono" "Terminus" ]; }) ]; -- cgit v1.3.1