reo101
0879b52630
Add more & generalize flake outputs: - templates: just a `default.nix` (TODO: add a `Haskell` template) - packages & devShells: create and use `forEachPkgs` Add more `Wayland` things for `homix`: - `swww` - custom package + custom systemd service (TODO: abstract away) - `wired` - from flake + `home-manager` module Add default `imports` and `nixokgs.overlays` for `reo101@homix` -- TODO: don't handwire it, somehow *auto-import* from `mkNixosHost` in `flake.nix`
7 lines
283 B
Nix
7 lines
283 B
Nix
# Custom packages, that can be defined similarly to ones from nixpkgs
|
|
# You can build them using 'nix build .#example' or (legacy) 'nix-build -A example'
|
|
|
|
{ pkgs ? (import ../nixpkgs.nix) { } }: {
|
|
# example = pkgs.callPackage ./example { };
|
|
swww = pkgs.callPackage ./swww { };
|
|
}
|