nix-config

My personal nixos and home-manager configuration
Log | Files | Refs | README

customize.nix (218B)


      1 { pkgs, ... }:
      2 
      3 pkgs.writeShellScriptBin "customize" ''
      4 
      5 
      6 echo 'Pick a colour scheme'
      7 theme=$(echo -e 'gruvbox\ndracula' | ${pkgs.fzf}/bin/fzf --reverse --height 10%)
      8 somehow import home/themes/$theme in home flake
      9 ''