Initial commit

This commit is contained in:
NullBite 2024-03-18 02:32:35 -04:00
commit 4ee66c3036
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
12 changed files with 103 additions and 0 deletions

5
.gitattributes vendored Normal file
View File

@ -0,0 +1,5 @@
*.webp filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
*.webm filter=lfs diff=lfs merge=lfs -text

41
flake.lock generated Normal file
View File

@ -0,0 +1,41 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1707978831,
"narHash": "sha256-UblFdWQ2MMZNzD9C/w8+7RjAJ2QIbebbzHUniQ/a44o=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "c68a9fc85c2cb3a313be6ff40511635544dde8da",
"type": "github"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs",
"systems": "systems"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

21
flake.nix Normal file
View File

@ -0,0 +1,21 @@
{
inputs = {
systems.url = "github:nix-systems/default";
};
outputs = { self, nixpkgs, systems }:
let
lib = nixpkgs.lib;
eachSystem = lib.genAttrs (import systems);
in {
packages = eachSystem (system: let
pkgs = import nixpkgs { inherit system; };
in rec {
nixfiles-assets = pkgs.callPackage ./package.nix { };
default = nixfiles-assets;
}
);
overlays.default = final: prev: {
inherit (self.outputs.packages.${prev.pkgs.system}) nixfiles-assets;
};
};
}

13
package.nix Normal file
View File

@ -0,0 +1,13 @@
{ lib, stdenvNoCC }:
stdenvNoCC.mkDerivation {
name = "nixfiles-assets";
src = ./.;
phases = [ "installPhase" ];
installPhase = ''
cd $src
pwd
ls
mkdir -p $out/share/
cp -a wallpapers $out/share/
'';
}

View File

@ -0,0 +1 @@
*.webm filter=lfs diff=lfs merge=lfs -text

BIN
wallpapers/nixfiles-animated/test.webm (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,2 @@
*.png filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text

View File

@ -0,0 +1,5 @@
# Asset credits
- Djayjesse - finding life: https://twitter.com/DJayjesse/status/1369683644277686272
- ViktorPrevalis - Strange Fauna: https://redd.it/hawcdq
- Simon Stålenhag - Belltowers: https://simonstalenhag.se/es.html
- Rain World OST Cover Art: https://www.artstation.com/artwork/d8Y29A

BIN
wallpapers/nixfiles-static/Djayjesse-finding_life.png (Stored with Git LFS) Executable file

Binary file not shown.

BIN
wallpapers/nixfiles-static/ViktorPrevails-strange_fauna.png (Stored with Git LFS) Executable file

Binary file not shown.

Binary file not shown.

BIN
wallpapers/nixfiles-static/stalenhag-belltowers.jpg (Stored with Git LFS) Executable file

Binary file not shown.