Move all files to nix-dendritic-example/
This commit is contained in:
parent
7f0d5e8ed1
commit
e96380d8c0
19 changed files with 0 additions and 0 deletions
23
nix-dendritic-example/modules/owner.nix
Normal file
23
nix-dendritic-example/modules/owner.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
flake = {
|
||||
meta.owner = {
|
||||
email = "oliver@oliverdavies.uk";
|
||||
name = "Oliver Davies";
|
||||
username = "opdavies";
|
||||
};
|
||||
|
||||
modules = {
|
||||
nixos.pc = {
|
||||
users.users.${config.flake.meta.owner.username} = {
|
||||
isNormalUser = true;
|
||||
initialPassword = "";
|
||||
extraGroups = [ "input" "wheel" ];
|
||||
};
|
||||
|
||||
nix.settings.trusted-users = [ config.flake.meta.owner.username ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue