Extract opdavies user
This commit is contained in:
parent
07e0b47988
commit
ba76093a41
|
@ -3,6 +3,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../common
|
../common
|
||||||
|
../../users/opdavies
|
||||||
|
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -18,9 +18,10 @@
|
||||||
outputs.nixosModules.default
|
outputs.nixosModules.default
|
||||||
|
|
||||||
./programs.nix
|
./programs.nix
|
||||||
./users.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
users.defaultUserShell = pkgs.zsh;
|
||||||
|
|
||||||
environment.systemPackages =
|
environment.systemPackages =
|
||||||
with pkgs;
|
with pkgs;
|
||||||
[
|
[
|
||||||
|
|
|
@ -1,20 +1,4 @@
|
||||||
{ pkgs, username, ... }:
|
{ pkgs, username, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
users = {
|
|
||||||
users.${username} = {
|
|
||||||
isNormalUser = true;
|
|
||||||
description = "Oliver Davies";
|
|
||||||
|
|
||||||
extraGroups = [
|
|
||||||
"docker"
|
|
||||||
"networkmanager"
|
|
||||||
"wheel"
|
|
||||||
];
|
|
||||||
|
|
||||||
packages = [ ];
|
|
||||||
};
|
|
||||||
|
|
||||||
defaultUserShell = pkgs.zsh;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../common
|
../common
|
||||||
|
../../users/opdavies
|
||||||
|
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
../common
|
../common
|
||||||
|
../../users/opdavies
|
||||||
|
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./secrets.nix
|
./secrets.nix
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../common
|
../common
|
||||||
|
../../users/opdavies
|
||||||
|
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
];
|
];
|
||||||
|
|
14
nix/users/opdavies/default.nix
Normal file
14
nix/users/opdavies/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
users.users.opdavies = {
|
||||||
|
description = "Oliver Davies";
|
||||||
|
isNormalUser = true;
|
||||||
|
|
||||||
|
extraGroups = [
|
||||||
|
"docker"
|
||||||
|
"networkmanager"
|
||||||
|
"wheel"
|
||||||
|
];
|
||||||
|
|
||||||
|
packages = [ ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue