mirror of
https://github.com/mjallen18/snowfall-lib.git
synced 2026-04-18 09:05:58 -05:00
fix: only enable matched user homes
This commit is contained in:
@@ -16,7 +16,6 @@ let
|
|||||||
mapAttrsToList
|
mapAttrsToList
|
||||||
optionals
|
optionals
|
||||||
mkDefault
|
mkDefault
|
||||||
traceSeqN
|
|
||||||
mkAliasDefinitions
|
mkAliasDefinitions
|
||||||
mkAliasAndWrapDefinitions
|
mkAliasAndWrapDefinitions
|
||||||
mkOption
|
mkOption
|
||||||
@@ -279,7 +278,10 @@ in
|
|||||||
config = mkIf host-matches {
|
config = mkIf host-matches {
|
||||||
# Initialize user information.
|
# Initialize user information.
|
||||||
snowfallorg.user.${user-name}.home.config = {
|
snowfallorg.user.${user-name}.home.config = {
|
||||||
snowfallorg.user.name = mkDefault user-name;
|
snowfallorg.user = {
|
||||||
|
enable = true;
|
||||||
|
name = mkDefault user-name;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ in
|
|||||||
user = {
|
user = {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = false;
|
||||||
description = "Whether to configure the user.";
|
description = "Whether to configure the user.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -45,6 +45,11 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
enable = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = true;
|
||||||
|
};
|
||||||
|
|
||||||
path = mkOption {
|
path = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "/home/${name}";
|
default = "/home/${name}";
|
||||||
|
|||||||
Reference in New Issue
Block a user