chore(cheetah)!: update config

Use flake overlays in `mkNixOnDroidHost`
Fix `FireCode` `ttf` path in `terminal.font`
Use `pkgs.nixUnstable`
This commit is contained in:
reo101 2024-01-04 01:04:50 +02:00
parent 39d8399a20
commit bed4f58f5f
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
2 changed files with 4 additions and 2 deletions

View file

@ -23,6 +23,8 @@
keep-derivations = true keep-derivations = true
''; '';
nix.package = pkgs.nixUnstable;
time.timeZone = "Europe/Sofia"; time.timeZone = "Europe/Sofia";
terminal.font = terminal.font =
@ -30,7 +32,7 @@
firacode = pkgs.nerdfonts.override { firacode = pkgs.nerdfonts.override {
fonts = [ "FiraCode" ]; fonts = [ "FiraCode" ];
}; };
fontPath = "share/fonts/truetype/NerdFonts/Fira Code Regular Nerd Font Complete Mono.ttf"; fontPath = "share/fonts/truetype/NerdFonts/FiraCodeNerdFontMono-Regular.ttf";
in in
"${firacode}/${fontPath}"; "${firacode}/${fontPath}";
} }

View file

@ -136,7 +136,7 @@ rec {
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;
overlays = [ overlays = builtins.attrValues outputs.overlays ++ [
inputs.nix-on-droid.overlays.default inputs.nix-on-droid.overlays.default
]; ];
}; };