diff options
| author | Fuwn <[email protected]> | 2024-09-17 01:30:46 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-17 01:30:46 -0700 |
| commit | 71de6c429c259bf8a5c3db61a1dd66ad636dcb17 (patch) | |
| tree | 2b6aecd645ce5f57edb53d6a505d3fd3d22e9773 /modules/software/shell.nix | |
| parent | xserver: options (diff) | |
| download | nixos-config-71de6c429c259bf8a5c3db61a1dd66ad636dcb17.tar.xz nixos-config-71de6c429c259bf8a5c3db61a1dd66ad636dcb17.zip | |
software: extend shell
Diffstat (limited to 'modules/software/shell.nix')
| -rw-r--r-- | modules/software/shell.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/software/shell.nix b/modules/software/shell.nix new file mode 100644 index 0000000..0b3508f --- /dev/null +++ b/modules/software/shell.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: +{ + environment = with pkgs; { + binsh = "${dash}/bin/dash"; + shells = [ fish ]; + }; +} |