diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-02-22 19:16:44 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-02-22 19:16:44 -0500 |
| commit | 1ae82800c18ee751fc6f274c19fff9fc2fd84d47 (patch) | |
| tree | 6453ca18f406d8406e1dbf6d05c157ce87cc5c45 /modules/foot.nix | |
| parent | 1049601e0b07627ef967d1092adc04022598648b (diff) | |
| download | home-1ae82800c18ee751fc6f274c19fff9fc2fd84d47.tar.gz | |
fixed stuff
Diffstat (limited to 'modules/foot.nix')
| -rw-r--r-- | modules/foot.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/foot.nix b/modules/foot.nix index 07ef2ce..4752562 100644 --- a/modules/foot.nix +++ b/modules/foot.nix @@ -9,8 +9,8 @@ in }; config = { - programs.foot = { - enable = cfg.enable; + programs.foot = lib.mkIf cfg.enable { + enable = true; server = { enable = true; }; |