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 = {
|
options.modules.desktop.kitty = {
|
||||||
enable = mkEnableOption false;
|
enable = mkEnableOption false;
|
||||||
};
|
};
|
||||||
|
@ -13,19 +17,18 @@ in
|
||||||
kitty
|
kitty
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.users.sako = { pkgs , ...}: {
|
home-manager.users.sako = {pkgs, ...}: {
|
||||||
xdg.configFile = {
|
xdg.configFile = {
|
||||||
kitty = {
|
kitty = {
|
||||||
source = ../../../config/kitty;
|
source = ../../../config/kitty;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# also just in case
|
# also just in case
|
||||||
fonts.fonts = with pkgs;[
|
fonts.packages = with pkgs; [
|
||||||
jetbrains-mono
|
jetbrains-mono
|
||||||
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
(nerdfonts.override {fonts = ["JetBrainsMono"];})
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue