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

This commit is contained in:
2026-01-30 18:34:19 +01:00
parent b22c5bc935
commit 35315a0585
5 changed files with 223 additions and 18 deletions

26
phone/default.nix Normal file
View File

@@ -0,0 +1,26 @@
{
pkgs,
...
}:
{
environment.packages = with pkgs; [
inputs.nvim.packages.x86_64-linux.nvim
];
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;
};
}

3
phone/home.nix Normal file
View File

@@ -0,0 +1,3 @@
{
home.stateVersion = "24.05";
}