fix deprecated thingy
This commit is contained in:
parent
31632e4d78
commit
8c1ed1dec3
1 changed files with 17 additions and 14 deletions
|
@ -1,9 +1,13 @@
|
|||
{ options, config, lib, pkgs, ...}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.desktop.kitty;
|
||||
in
|
||||
{
|
||||
options,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.modules.desktop.kitty;
|
||||
in {
|
||||
options.modules.desktop.kitty = {
|
||||
enable = mkEnableOption false;
|
||||
};
|
||||
|
@ -22,10 +26,9 @@ in
|
|||
};
|
||||
|
||||
# also just in case
|
||||
fonts.fonts = with pkgs;[
|
||||
fonts.packages = with pkgs; [
|
||||
jetbrains-mono
|
||||
(nerdfonts.override {fonts = ["JetBrainsMono"];})
|
||||
];
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue