mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-15 06:30:10 +03:00
123
This commit is contained in:
+2
-1
@@ -26,8 +26,9 @@ let
|
|||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
users = {
|
users = {
|
||||||
"${xlib.device.username}" = mkHomeModule xlib.device.username;
|
|
||||||
root = mkHomeModule "root";
|
root = mkHomeModule "root";
|
||||||
|
"${xlib.device.username}" = mkHomeModule xlib.device.username;
|
||||||
|
"${xlib.users.new}" = mkHomeModule xlib.users.new;
|
||||||
};
|
};
|
||||||
sharedModules = [
|
sharedModules = [
|
||||||
inputs.plasma-manager.homeModules.plasma-manager
|
inputs.plasma-manager.homeModules.plasma-manager
|
||||||
|
|||||||
@@ -30,6 +30,11 @@
|
|||||||
description = "Hostname...";
|
description = "Hostname...";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
users.new = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
default = "snity";
|
||||||
|
description = "Username for guest.";
|
||||||
|
};
|
||||||
dirs = {
|
dirs = {
|
||||||
user-home = lib.mkOption {
|
user-home = lib.mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
|
|||||||
Reference in New Issue
Block a user