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