Skip to content

Commit 3e80ffb

Browse files
committed
fix: make flake more portable
Signed-off-by: matttrach <matt.trachier@suse.com>
1 parent d102606 commit 3e80ffb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
devShells.default = pkgs.mkShell {
143143
buildInputs = [ devShellPackage ];
144144
shellHook = ''
145-
while read word; do echo -e "*$word\n#" | aspell -a --dont-validate-words 2>/dev/null; done < aspell_custom.txt
145+
while read word; do echo -e "*$word\n#" | aspell -a --dont-validate-words >/dev/null 2>&1; done < aspell_custom.txt
146146
export PS1="nix:# ";
147147
'';
148148
};

0 commit comments

Comments
 (0)