feat(phone): set up 'nix-on-droid'

This commit is contained in:
2026-01-30 18:34:19 +01:00
parent c048eb73c0
commit 02f28ab1df
5 changed files with 221 additions and 18 deletions

26
phone/default.nix Normal file
View File

@@ -0,0 +1,26 @@
{
pkgs,
...
}:
{
environment.packages = with pkgs; [
neovim
];
environment.etcBackupExtension = ".bak";
system.stateVersion = "24.05";
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
time.timeZone = "Europe/Brussels";
home-manager = {
config = ./home.nix;
backupFileExtension = "hm-bak";
useGlobalPkgs = true;
};
}