Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(cli.extras): Add freeze for cli screenshot generation

+11
+11
nix/home/modules/cli/extras.nix
··· 12 12 config = lib.mkIf cfg.enable { 13 13 home.packages = with pkgs; [ 14 14 asciinema 15 + charm-freeze 15 16 ffmpeg 16 17 imagemagick 17 18 inotify-tools ··· 36 37 }; 37 38 nix-index.enable = true; 38 39 nix-index-database.comma.enable = true; 40 + }; 41 + 42 + home.file."${config.xdg.configHome}/freeze/user.json".text = builtins.toJSON { 43 + font.family = "JetBrainsMono Nerd Font"; 44 + font.file = "${pkgs.nerd-fonts.jetbrains-mono}/share/fonts/truetype/NerdFonts/JetBrainsMono/JetBrainsMonoNerdFontMono-Regular.ttf"; 45 + font.ligatures = true; 46 + font.size = config.stylix.fonts.sizes.terminal; 47 + shadow = false; 48 + window = false; 49 + show-line-numbers = true; 39 50 }; 40 51 }; 41 52 }