From 1e845f5ed153aad28c2284959cc00a9054acc55d Mon Sep 17 00:00:00 2001 From: adikro Date: Tue, 23 Dec 2025 21:22:19 +0100 Subject: . --- hm/shell/foot.nix | 37 ------------------------------------- os/srv/files.nix | 1 + 2 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 hm/shell/foot.nix diff --git a/hm/shell/foot.nix b/hm/shell/foot.nix deleted file mode 100644 index a9c3eac..0000000 --- a/hm/shell/foot.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ pkgs, lib, config, ... }: -let - cfg = config.hm.shell.foot; - - footTheme = pkgs.fetchurl { - url = "https://codeberg.org/dnkl/foot/src/branch/master/themes/gruvbox-dark"; - sha256 = ""; - }; -in -{ - options.hm.shell.foot = { - enable = lib.mkEnableOption "foot terminal emulator"; - fontSize = lib.mkOption { - type = lib.types.int; - default = 14; - description = "Font size for the foot terminal"; - }; - }; - config = lib.mkIf cfg.enable { - programs.foot = { - enable = true; - settings = { - main = { - font = "JetBrainsMonoNFM-Regular:size=${toString cfg.fontSize}"; - box-drawings-uses-font-glyphs = "yes"; - include = "${footTheme}"; - }; - scrollback = { - lines = 10000; - }; - mouse = { - hide-when-typing = "yes"; - }; - }; - }; - }; -} diff --git a/os/srv/files.nix b/os/srv/files.nix index 4a26c74..a2dcdc1 100644 --- a/os/srv/files.nix +++ b/os/srv/files.nix @@ -32,6 +32,7 @@ in services.gvfs.enable = true; environment.systemPackages = with pkgs; [ + nautilus trashy gdu -- cgit v1.3