zsh?
This commit is contained in:
parent
cde9b046be
commit
cdef89b1e6
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
inputs,
|
||||
config,
|
||||
config, pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
|
@ -33,7 +33,10 @@
|
|||
services.libinput.enable = true;
|
||||
|
||||
# Define a user account.
|
||||
users.users = {
|
||||
users = {
|
||||
defaultUserShell = pkgs.zsh;
|
||||
|
||||
users = {
|
||||
root.hashedPasswordFile = config.sops.secrets."root-pw".path;
|
||||
|
||||
min = {
|
||||
|
@ -42,6 +45,7 @@
|
|||
hashedPasswordFile = config.sops.secrets."user-pw".path;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
|
|
Loading…
Reference in New Issue