chore(cheetah)!: update config
Use flake overlays in `mkNixOnDroidHost` Fix `FireCode` `ttf` path in `terminal.font` Use `pkgs.nixUnstable`
This commit is contained in:
parent
39d8399a20
commit
bed4f58f5f
2 changed files with 4 additions and 2 deletions
|
@ -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}";
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue