Skip to content
/ pkgs Public

Collection of Nix packages and modules in a flake.

License

Notifications You must be signed in to change notification settings

kostek001/pkgs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kostek001-pkgs

Collection of Nix packages and modules in a flake.

Features

Modules:

  • Home Manager
    • adb-auto-forward

Packages:

⚠️ For wallpaper-engine-kde-plugin and plasma-smart-video-wallpaper-reborn packages add qt6.qtwebsockets, qt6.qtmultimedia packages too.

Usage

Add github:kostek001/pkgs to your flake inputs:

inputs = {
  # ...
  kostek001-pkgs = {
    url = "github:kostek001/pkgs";
    # Only if using nixpkgs-unstable
    inputs.nixpkgs.follows = "nixpkgs";
  };
};

Add packages

With inputs.kostek001-pkgs.packages.${pkgs.system}.<package>

or apply nixpkgs overlay

{ inputs, ... }:
{
  nixpkgs.overlays = [ inputs.kostek001-pkgs.overlays.default ];
}

Add modules

{ inputs, ... }:
{
  # NixOS module
  imports = [ inputs.kostek001-pkgs.nixosModules.<module> ];
  # Home Manager module
  home-manager.sharedModules = [ inputs.kostek001-pkgs.homeManagerModules.<module> ];
}

About

Collection of Nix packages and modules in a flake.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages