more nix-on-droid

This commit is contained in:
2025-01-19 14:27:23 -06:00
parent dc46ad62b9
commit 32ae2b2250

View File

@@ -1,23 +1,16 @@
{ config, lib, pkgs, inputs, ... }: {
{ config, lib, pkgs, ... }: {
home-manager = {
backupFileExtension = ".backup";
config = lib.mkMerge [
config = { config, lib, pkgs, inputs }: {
imports = [
inputs.nix-on-droid-home-manager
{
];
config.homeconfig = {
wal.enable = true;
calcurse.enable = true;
};
}
];
};
nix = {
nixPath = "nixpkgs=${inputs.nixpkgs-droid}";
extraOptions = ''
experimental-features = nix-command flakes
'';
};
terminal.font = "${pkgs.fira-code}/share/fonts/truetype/FiraCode-VF.ttf";