Add initial testfiles for home manager
This commit is contained in:
parent
82e391c872
commit
24186358fa
4 changed files with 126 additions and 0 deletions
5
nix/home.nix
Normal file
5
nix/home.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{ ... }: {
|
||||
home = {
|
||||
stateVersion = "24.05";
|
||||
};
|
||||
}
|
||||
11
nix/local_machine.nix
Normal file
11
nix/local_machine.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue