- Move shell and font configs out of configuration.nix and into separate files - Add udiskie to dwm - Add kdeconnect for phone connection
8 lines
143 B
Nix
8 lines
143 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.shells = with pkgs; [ zsh ];
|
|
users.defaultUserShell = pkgs.zsh;
|
|
programs.zsh.enable = true;
|
|
}
|