change shell to zsh

This commit is contained in:
Luj 2023-11-22 18:09:11 +01:00
parent 9937d9cdb3
commit 1d1bfd4336
Signed by: luj
GPG key ID: 6FC74C847011FD83
5 changed files with 187 additions and 9 deletions

View file

@ -1,10 +1,10 @@
{ config, pkgs, lib, ... }: {
users.mutableUsers = false;
users.defaultUserShell = pkgs.fish;
users.defaultUserShell = pkgs.zsh;
sops.secrets.user-root-password.neededForUsers = true;
programs.fish.enable = true;
programs.zsh.enable = true;
users.users.root = {
uid = config.ids.uids.root;

View file

@ -6,7 +6,7 @@
isNormalUser = true;
home = "/home/julien";
extraGroups = [ "wheel" config.users.groups.keys.name "filerun" "networkmanager" "davfs2" "adbusers" "audio" ];
shell = pkgs.fish;
shell = pkgs.zsh;
passwordFile = config.sops.secrets.user-julien-password.path;
};

View file

@ -4,7 +4,6 @@
isNormalUser = true;
home = "/home/status";
extraGroups = [ "wheel" ];
shell = pkgs.fish;
openssh.authorizedKeys.keyFiles = [
(pkgs.fetchurl {
url = "https://github.com/JulienMalka.keys";