add files dummy

This commit is contained in:
2025-01-19 13:08:33 -06:00
parent acd68906ce
commit dc46ad62b9

View File

@@ -0,0 +1,33 @@
{ config, lib, pkgs, inputs, ... }: {
home-manager = {
backupFileExtension = ".backup";
config = lib.mkMerge [
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";
user.shell = "${pkgs.zsh}/bin/zsh";
system.stateVersion = "24.05";
environment = {
etcBackupExtension = ".backup";
motd = "";
};
}