zsh?
This commit is contained in:
parent
cde9b046be
commit
cdef89b1e6
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
inputs,
|
inputs,
|
||||||
config,
|
config, pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -33,13 +33,17 @@
|
||||||
services.libinput.enable = true;
|
services.libinput.enable = true;
|
||||||
|
|
||||||
# Define a user account.
|
# Define a user account.
|
||||||
users.users = {
|
users = {
|
||||||
root.hashedPasswordFile = config.sops.secrets."root-pw".path;
|
defaultUserShell = pkgs.zsh;
|
||||||
|
|
||||||
min = {
|
users = {
|
||||||
isNormalUser = true;
|
root.hashedPasswordFile = config.sops.secrets."root-pw".path;
|
||||||
extraGroups = ["wheel"]; # Enable ‘sudo’ for the user.
|
|
||||||
hashedPasswordFile = config.sops.secrets."user-pw".path;
|
min = {
|
||||||
|
isNormalUser = true;
|
||||||
|
extraGroups = ["wheel"]; # Enable ‘sudo’ for the user.
|
||||||
|
hashedPasswordFile = config.sops.secrets."user-pw".path;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue