feat(cursors): add wii cursors (WIP)
This commit is contained in:
parent
18379a72b7
commit
f3c8595eb7
21 changed files with 93 additions and 6 deletions
19
media/wii-cursors-xcursor/flake.nix
Normal file
19
media/wii-cursors-xcursor/flake.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
description = "Wii Cursor Theme";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ self, nixpkgs, ... }:
|
||||
let
|
||||
system = "x86_64-linux"; # Adjust if needed
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
in
|
||||
{
|
||||
packages.${system}.wii-cursor = pkgs.callPackage ./default.nix { };
|
||||
|
||||
defaultPackage.${system} = self.packages.${system}.wii-cursor;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue