nixos packages and modules for my own use (feel free to steal anyway)
Find a file
Renovate Bot 0c1d87c6d5 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:nixos/nixpkgs/5e5402ecbcb27af32284d4a62553c019a3a49ea6' (2025-03-27)
  → 'github:nixos/nixpkgs/52faf482a3889b7619003c0daec593a1912fddc1' (2025-03-30)
• Updated input 'rust-overlay':
    'github:oxalica/rust-overlay/15c2a7930e04efc87be3ebf1b5d06232e635e24b' (2025-03-30)
  → 'github:oxalica/rust-overlay/011de3c895927300651d9c2cb8e062adf17aa665' (2025-03-31)
2025-04-01 00:01:19 +00:00
.forgejo/workflows change action git user to renovate bot instead of github 2025-02-14 03:42:59 +00:00
lib format and remove devshell 2025-02-17 18:37:57 +02:00
modules fix default module 2025-02-17 19:47:58 +02:00
overlays init v2 && first package (JKPS) 2025-01-31 18:22:54 +02:00
pkgs packages.x86_64-linux.vesktop-git: 1.5.5-unstable-2025-03-23 -> 1.5.5-unstable-2025-03-27 2025-03-27 00:02:38 +00:00
.gitignore flake init 2025-01-22 18:32:12 +02:00
flake.lock flake.lock: Update 2025-04-01 00:01:19 +00:00
flake.nix nixos modules init (rEFInd & cache) 2025-02-17 19:38:39 +02:00
LICENSE move to gplv3 2025-01-31 17:28:39 +02:00
README.md README: more instructions 2025-02-03 14:07:54 +02:00

haipkgs

nixos packages and modules for my own use (feel free to steal anyway)

btw if you do steal stuff from here keep in mind I have made a lot of my own optimizations and tailored these packages for my specific use case

here's a list of what I have done/will do for most of the packages

  • remove any darwin code (I don't use or plan to use a mac)
  • assume wayland (for example electron wayland flags hard-coded)

oki but how 2 use?!?

just add this to your flake.nix inputs (nix channel users cope)

  haipkgs = {
    url = "git+https://git.blahai.gay/blahai/haipkgs.git";
    inputs = {
      nixpkgs.follows = "nixpkgs";
    };
  };

then add this to your config somewhere

nixpkgs.overlays = [
  inputs.haipkgs.overlays.default
];

and congrats you can now use haipkgs 🎉

Cache??

yop

nix.settings = {
  substituters = [
    "https://haipkgs.cachix.org"
  ];
  trusted-public-keys = [
    "haipkgs.cachix.org-1:AcjMqIafTEQ7dw99RpeTJU2ywNUn1h8yIxz2+zjpK/A="
  ];
};

credits

as always thank you to these wonderful people for making this possible

  • isabelroses for beapkgs
  • chaotic-cx team for chaotic-nyx
  • NUR for the nix user repository