Refactor Git configuration
This commit is contained in:
parent
8947c4abd2
commit
e111506428
13 changed files with 180 additions and 194 deletions
|
@ -2,14 +2,21 @@
|
|||
|
||||
{
|
||||
flake = {
|
||||
meta.owner.username = "opdavies";
|
||||
meta.owner = {
|
||||
email = "oliver@oliverdavies.uk";
|
||||
name = "Oliver Davies";
|
||||
username = "opdavies";
|
||||
};
|
||||
|
||||
modules = {
|
||||
nixos.pc = {
|
||||
users.users.${config.flake.meta.owner.username} = {
|
||||
isNormalUser = true;
|
||||
initialPassword = lib.mkForce "";
|
||||
extraGroups = [ "input" "wheel" ];
|
||||
extraGroups = [
|
||||
"input"
|
||||
"wheel"
|
||||
];
|
||||
};
|
||||
|
||||
nix.settings.trusted-users = [ config.flake.meta.owner.username ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue