Flake for my NixOS devices
at stylus-try 10 lines 254 B view raw
1{pkgs, ...}: { 2 environment.systemPackages = with pkgs; [ 3 haskell.compiler.ghc912 4 ]; 5 6 home-manager.users.bean.xdg.configFile."ghc/ghci.conf".text = '' 7 :set prompt "\ESC[1;35m\x03BB> \ESC[m" 8 :set prompt-cont "\ESC[1;35m > \ESC[m" 9 ''; 10}