1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 18:17:44 +00:00

Fix indent issues

This commit is contained in:
RGBCube 2025-02-09 15:38:30 +03:00
parent cbd4d9a8b6
commit 8ac83a419b
2 changed files with 15 additions and 15 deletions

View file

@ -47,15 +47,15 @@ in {
} }
} }
def --wrapped ns [...programs] { def --wrapped ns [...programs] {
nix shell ...($programs | each { nix shell ...($programs | each {
if ($in | str contains "#") or ($in | str contains ":") { if ($in | str contains "#") or ($in | str contains ":") {
$in $in
} else { } else {
"default#" + $in "default#" + $in
} }
}) })
} }
''; '';
}]; }];
} }

View file

@ -10,13 +10,13 @@ in merge
}; };
fonts.packages = [ fonts.packages = [
config.theme.font.sans.package config.theme.font.sans.package
config.theme.font.mono.package config.theme.font.mono.package
pkgs.noto-fonts pkgs.noto-fonts
pkgs.noto-fonts-cjk-sans pkgs.noto-fonts-cjk-sans
pkgs.noto-fonts-lgc-plus pkgs.noto-fonts-lgc-plus
pkgs.noto-fonts-emoji pkgs.noto-fonts-emoji
]; ];
}) })