Add initial testfiles for home manager

This commit is contained in:
Martin Larsson 2025-01-16 09:08:32 +00:00
parent 82e391c872
commit 24186358fa
4 changed files with 126 additions and 0 deletions

11
nix/local_machine.nix Normal file
View file

@ -0,0 +1,11 @@
{ ... }: {
# local-machine.nix
# This is a template file that is committed to git with minimal changes.
# In order to use this and remain pure, each machine needs to create a local branch, i.e `machine-wsl` and set these variables
# accordingly, and then commit it.
home = {
# Stub values for demonstration. Override these in local branch.
username = "nixos";
homeDirectory = "/home/nixos";
};
}