
Revert "weenie mode" This reverts commit ce8c23e0e6facd493c79c68c27c278dac2794d94. Reapply "weenie mode" This reverts commit 440088f2e5d91e0d4730a6451637b0325f7fb931.
14 lines
292 B
Nix
14 lines
292 B
Nix
{pkgs, ...}: let
|
|
inherit (pkgs) murex;
|
|
in {
|
|
environment.pathsToLink = ["/share/zsh"];
|
|
programs.zsh.enable = true;
|
|
environment.systemPackages = [
|
|
murex
|
|
];
|
|
users.defaultUserShell = murex;
|
|
# users.defaultUserShell = pkgs.zsh;
|
|
console = {
|
|
font = "Lat2-Terminus16";
|
|
};
|
|
}
|