Home : Remove home dir.
This commit is contained in:
parent
0451c75fa1
commit
66882a8820
|
@ -1,6 +1,9 @@
|
||||||
{ pkgs, lib, ... }: {
|
{ const, util, style, pkgs, lib, setting, key, secret, ... } @args: {
|
||||||
imports = [
|
imports = [
|
||||||
./home/Dasha.nix
|
(import ./common (args // {
|
||||||
|
username = "dasha";
|
||||||
|
homeDir = "/home/dasha";
|
||||||
|
}))
|
||||||
];
|
];
|
||||||
users.users.dasha = {
|
users.users.dasha = {
|
||||||
createHome = true;
|
createHome = true;
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
{ secret, ... }: {
|
{ const, util, style, pkgs, setting, key, secret, ... } @args: {
|
||||||
imports = [
|
imports = [
|
||||||
./home/Root.nix
|
(import ./common (args // {
|
||||||
|
username = "root";
|
||||||
|
homeDir = "/root";
|
||||||
|
}))
|
||||||
];
|
];
|
||||||
|
|
||||||
users.users.root.hashedPassword = secret.hashedPassword;
|
users.users.root.hashedPassword = secret.hashedPassword;
|
||||||
security.sudo = {
|
security.sudo = {
|
||||||
enable = false;
|
enable = false;
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
{ pkgs, lib, secret, ... }: {
|
{ const, util, style, pkgs, lib, setting, key, secret, ... } @args: {
|
||||||
imports = [
|
imports = [
|
||||||
./home/Voronind.nix
|
(import ./common (args // {
|
||||||
|
username = "voronind";
|
||||||
|
homeDir = "/home/voronind";
|
||||||
|
}))
|
||||||
];
|
];
|
||||||
|
|
||||||
users.users.voronind = {
|
users.users.voronind = {
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
{ const, util, style, pkgs, setting, key, secret, ... } @args: {
|
|
||||||
imports = [
|
|
||||||
(import ./common (args // {
|
|
||||||
username = "dasha";
|
|
||||||
homeDir = "/home/dasha";
|
|
||||||
}))
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
{ const, util, style, pkgs, setting, key, secret, ... } @args: {
|
|
||||||
imports = [
|
|
||||||
(import ./common (args // {
|
|
||||||
username = "root";
|
|
||||||
homeDir = "/root";
|
|
||||||
}))
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
{ const, util, style, pkgs, setting, key, secret, ... } @args: {
|
|
||||||
imports = [
|
|
||||||
(import ./common (args // {
|
|
||||||
username = "voronind";
|
|
||||||
homeDir = "/home/voronind";
|
|
||||||
}))
|
|
||||||
];
|
|
||||||
}
|
|
Loading…
Reference in a new issue