my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

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

isabel/packages: use a older nom

isabel 152d05b9 479d5a9d

+17 -3
+15 -1
home/isabel/packages.nix
··· 21 21 # gum # a nicer scripting 22 22 jq # json parser 23 23 just # cool build tool 24 - nix-output-monitor # much nicer nix build output 24 + # nix-output-monitor # much nicer nix build output 25 25 rsync 26 26 unzip 27 27 wakatime-cli 28 28 yq # yaml parser 29 29 # keep-sorted end 30 30 ; 31 + 32 + # nom >= 2.1.7 breaks with lix so lets just use an older version for now. 33 + # also add a warning to eventually force me to fix this instead of forgetting 34 + nix-output-monitor = 35 + if lib.versionAtLeast pkgs.nix-output-monitor.version "2.1.9" then 36 + throw "time to update nix-output-monitor. also rember to change the shell.nix" 37 + else 38 + pkgs.nix-output-monitor.overrideAttrs { 39 + version = "2.1.6"; 40 + src = pkgs.fetchzip { 41 + url = "https://code.maralorn.de/maralorn/nix-output-monitor/archive/v2.1.6.tar.gz"; 42 + sha256 = "sha256-YfxFcGD9U7RzctnTRUQX1Nsz2EtiDIUGpz2nTo0OSWw="; 43 + }; 44 + }; 31 45 32 46 inherit (inputs'.extersia.packages) zzz; # code snippets in the cli 33 47 })
+2 -2
modules/flake/programs/shell.nix
··· 3 3 just, 4 4 gitMinimal, 5 5 sops, 6 - nix-output-monitor, 6 + # nix-output-monitor, 7 7 treefmt-wrapped, 8 8 }: 9 9 mkShellNoCC { ··· 14 14 gitMinimal # we need git 15 15 sops # secrets management 16 16 treefmt-wrapped # nix formatter 17 - nix-output-monitor # get clean diff between generations 17 + # nix-output-monitor # get clean diff between generations 18 18 ]; 19 19 20 20 inputsFrom = [ treefmt-wrapped ];