all repos — flake @ 8e07b34fd14b326d037be884e12600f18dd6c4e1

got my cool flake

home/common/ironbar/style.nix (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
{ pkgs }:
pkgs.runCommand "ironbar-style.css"
  {
    nativeBuildInputs = [ pkgs.dart-sass ];
  }
  ''
    sass ${./style.scss} $out
  ''