summaryrefslogtreecommitdiff
path: root/hm/shell/foot.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
committeradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
commitc1d9af57156f3c95590d9a12c394ee064df9696e (patch)
tree7e515761590c510c30329ef8548c7d84a8e95aaa /hm/shell/foot.nix
parent791bc419b6dac7c70951981ef6b34cdf85828470 (diff)
added disko config for laptop, added storage and memory modules
Diffstat (limited to 'hm/shell/foot.nix')
-rw-r--r--hm/shell/foot.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/hm/shell/foot.nix b/hm/shell/foot.nix
index 9847399..ecd345a 100644
--- a/hm/shell/foot.nix
+++ b/hm/shell/foot.nix
@@ -1,6 +1,6 @@
{ pkgs, lib, config, ... }:
let
- cfg = config.szpont.hm.shell.foot;
+ cfg = config.hm.shell.foot;
footTheme = pkgs.fetchurl {
url = "https://codeberg.org/dnkl/foot/raw/branch/master/themes/gruvbox-dark";
@@ -8,7 +8,7 @@ let
};
in
{
- options.szpont.hm.shell.foot = {
+ options.hm.shell.foot = {
enable = lib.mkEnableOption "foot terminal emulator";
fontSize = lib.mkOption {
type = lib.types.int;
@@ -16,7 +16,6 @@ in
description = "Font size for the foot terminal";
};
};
-
config = lib.mkIf cfg.enable {
programs.foot = {
enable = true;