nix-on-droid home manager integration

This commit is contained in:
2025-01-26 17:26:13 +00:00
parent bf026690ae
commit 3136df53b7
4 changed files with 189 additions and 1 deletions

View File

@@ -44,4 +44,10 @@
# Set your time zone
#time.timeZone = "Europe/Berlin";
home-manager = {
config = ./home.nix
backupFileExtension = "hm-bak"
useGlobalPkgs = true;
};
}

8
hosts/android/home.nix Normal file
View File

@@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
# Read the changelog before changing this value
home.stateVersion = "24.05";
# insert home-manager config
}