set dash as the default shell on all 3 main machines

This commit is contained in:
jacekpoz 2024-06-22 23:49:36 +02:00
parent 5de5f6f6c6
commit 38e67d90ca
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8
4 changed files with 9 additions and 0 deletions

View file

@ -2,6 +2,7 @@ _: {
imports = [
../../options/boot/systemd-boot.nix
../../options/common/binary-caches.nix
../../options/common/dash.nix
../../options/common/disk.nix
../../options/common/disable-nano.nix
../../options/common/nix.nix

View file

@ -2,6 +2,7 @@ _: {
imports = [
../../options/boot/systemd-boot.nix
../../options/common/binary-caches.nix
../../options/common/dash.nix
../../options/common/disable-nano.nix
../../options/common/cpu/intel.nix
../../options/common/disk.nix

View file

@ -2,6 +2,7 @@ _: {
imports = [
../../options/boot/systemd-boot.nix
../../options/common/binary-caches.nix
../../options/common/dash.nix
../../options/common/cpu/amd.nix
../../options/common/disable-nano.nix
../../options/common/disk.nix

6
options/common/dash.nix Normal file
View file

@ -0,0 +1,6 @@
{
pkgs,
...
}: {
users.defaultUserShell = pkgs.dash;
}