test of nix-on-droid

This commit is contained in:
Sebastian Moser
2023-11-10 18:09:42 +01:00
parent 762d99c548
commit e58e7442e4
2 changed files with 63 additions and 4 deletions

21
hosts/nix-on-phone.nix Normal file
View File

@@ -0,0 +1,21 @@
{ pkgs, ... }:
{
environment.packages = with pkgs; [
vim
subversion
git
];
system.stateVersion = "23.05";
home-manager.config = {
imports = [
#../programs/git.nix
#../programs/lf/default.nix
#../programs/neovim.nix
#../programs/bash.nix
];
#home.stateVersion = "22.11";
home.stateVersion = "22.05";
};
}