set dash as the default shell on all 3 main machines
This commit is contained in:
parent
5de5f6f6c6
commit
38e67d90ca
4 changed files with 9 additions and 0 deletions
|
@ -2,6 +2,7 @@ _: {
|
||||||
imports = [
|
imports = [
|
||||||
../../options/boot/systemd-boot.nix
|
../../options/boot/systemd-boot.nix
|
||||||
../../options/common/binary-caches.nix
|
../../options/common/binary-caches.nix
|
||||||
|
../../options/common/dash.nix
|
||||||
../../options/common/disk.nix
|
../../options/common/disk.nix
|
||||||
../../options/common/disable-nano.nix
|
../../options/common/disable-nano.nix
|
||||||
../../options/common/nix.nix
|
../../options/common/nix.nix
|
||||||
|
|
|
@ -2,6 +2,7 @@ _: {
|
||||||
imports = [
|
imports = [
|
||||||
../../options/boot/systemd-boot.nix
|
../../options/boot/systemd-boot.nix
|
||||||
../../options/common/binary-caches.nix
|
../../options/common/binary-caches.nix
|
||||||
|
../../options/common/dash.nix
|
||||||
../../options/common/disable-nano.nix
|
../../options/common/disable-nano.nix
|
||||||
../../options/common/cpu/intel.nix
|
../../options/common/cpu/intel.nix
|
||||||
../../options/common/disk.nix
|
../../options/common/disk.nix
|
||||||
|
|
|
@ -2,6 +2,7 @@ _: {
|
||||||
imports = [
|
imports = [
|
||||||
../../options/boot/systemd-boot.nix
|
../../options/boot/systemd-boot.nix
|
||||||
../../options/common/binary-caches.nix
|
../../options/common/binary-caches.nix
|
||||||
|
../../options/common/dash.nix
|
||||||
../../options/common/cpu/amd.nix
|
../../options/common/cpu/amd.nix
|
||||||
../../options/common/disable-nano.nix
|
../../options/common/disable-nano.nix
|
||||||
../../options/common/disk.nix
|
../../options/common/disk.nix
|
||||||
|
|
6
options/common/dash.nix
Normal file
6
options/common/dash.nix
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
users.defaultUserShell = pkgs.dash;
|
||||||
|
}
|
Loading…
Reference in a new issue