summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/zsh-user.nix
blob: 3089b706aac0413273ae2fc8bbf2bd1b9bf02add (plain)
1
2
3
4
5
6
7
8
9
10
{ config, lib, pkgs, ... }:
##
with lib;
let
  mainUser = config.krebs.build.user.name;
in
{
  programs.zsh.enable = true;
  users.extraUsers.${mainUser}.shell = "/run/current-system/sw/bin/zsh";
}