Bohdan's terminal configuration
0
fork

Configure Feed

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

basic RE tooling

bpavuk cf3ccb49 f50d3b08

+14 -6
+6 -6
flake.lock
··· 7 7 ] 8 8 }, 9 9 "locked": { 10 - "lastModified": 1759761710, 11 - "narHash": "sha256-6ZG7VZZsbg39gtziGSvCJKurhIahIuiCn+W6TGB5kOU=", 10 + "lastModified": 1759853171, 11 + "narHash": "sha256-uqbhyXtqMbYIiMqVqUhNdSuh9AEEkiasoK3mIPIVRhk=", 12 12 "owner": "nix-community", 13 13 "repo": "home-manager", 14 - "rev": "929535c3082afdf0b18afec5ea1ef14d7689ff1c", 14 + "rev": "1a09eb84fa9e33748432a5253102d01251f72d6d", 15 15 "type": "github" 16 16 }, 17 17 "original": { ··· 22 22 }, 23 23 "nixpkgs": { 24 24 "locked": { 25 - "lastModified": 1759733170, 26 - "narHash": "sha256-TXnlsVb5Z8HXZ6mZoeOAIwxmvGHp1g4Dw89eLvIwKVI=", 25 + "lastModified": 1759831965, 26 + "narHash": "sha256-vgPm2xjOmKdZ0xKA6yLXPJpjOtQPHfaZDRtH+47XEBo=", 27 27 "owner": "nixos", 28 28 "repo": "nixpkgs", 29 - "rev": "8913c168d1c56dc49a7718685968f38752171c3b", 29 + "rev": "c9b6fb798541223bbb396d287d16f43520250518", 30 30 "type": "github" 31 31 }, 32 32 "original": {
+7
nixos/home/re/default.nix
··· 1 + { lib, pkgs, config, ... }: 2 + 3 + { 4 + home.packages = with pkgs; [ 5 + ghidra 6 + ]; 7 + }
+1
nixos/users/bpavuk.nix
··· 30 30 (import ../home/fonts { inherit config pkgs lib; }) 31 31 (import ../home/utils.nix { inherit config pkgs lib; }) 32 32 (import ../home/life { inherit config pkgs lib zen-browser; }) 33 + (import ../home/re { inherit config pkgs lib; }) 33 34 ]; 34 35 }