Collection of Nix packages and modules in a flake.
Modules:
- Home Manager
adb-auto-forward
Packages:
kde-material-you-colors
v1.9.3 – contains only backend
kde-material-you-colors.widget
– contains widget and screenshot_helperplasma-smart-video-wallpaper-reborn
commitwallpaper-engine-kde-plugin
commitalvr
v20.8.1slimevr
v0.12.1ytermusic
commitadb-auto-forward
v0.1.1
wallpaper-engine-kde-plugin
and plasma-smart-video-wallpaper-reborn
packages add qt6.qtwebsockets
, qt6.qtmultimedia
packages too.
Add github:kostek001/pkgs
to your flake inputs:
inputs = {
# ...
kostek001-pkgs = {
url = "github:kostek001/pkgs";
# Only if using nixpkgs-unstable
inputs.nixpkgs.follows = "nixpkgs";
};
};
With inputs.kostek001-pkgs.packages.${pkgs.system}.<package>
or apply nixpkgs
overlay
{ inputs, ... }:
{
nixpkgs.overlays = [ inputs.kostek001-pkgs.overlays.default ];
}
{ inputs, ... }:
{
# NixOS module
imports = [ inputs.kostek001-pkgs.nixosModules.<module> ];
# Home Manager module
home-manager.sharedModules = [ inputs.kostek001-pkgs.homeManagerModules.<module> ];
}