NixOS configuration 馃獎
at refactor/sway 18 lines 379 B view raw
1{ lib, ... }: 2let 3 inherit (builtins) 4 fromTOML 5 readFile 6in 7{ 8 programs.starship = { 9 enable = true; 10 11 settings = fromTOML ( 12 readFile (fetchurl { 13 url = "https://starship.rs/presets/toml/bracketed-segments.toml"; 14 sha256 = "sha256-FQHzfWYEcllLCmH2nx52J31Jw8Yy6aDAoOVdxWxhcAU="; # TODO: make this auto update? (versioned) 15 }) 16 ); 17 }; 18}