mirror of
https://github.com/Silveere/nixfiles-assets.git
synced 2025-04-28 14:55:27 -04:00
Initial commit
This commit is contained in:
commit
4ee66c3036
5
.gitattributes
vendored
Normal file
5
.gitattributes
vendored
Normal 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
41
flake.lock
generated
Normal 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
21
flake.nix
Normal 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
13
package.nix
Normal 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/
|
||||
'';
|
||||
}
|
1
wallpapers/nixfiles-animated/.gitattributes
vendored
Normal file
1
wallpapers/nixfiles-animated/.gitattributes
vendored
Normal file
@ -0,0 +1 @@
|
||||
*.webm filter=lfs diff=lfs merge=lfs -text
|
BIN
wallpapers/nixfiles-animated/test.webm
(Stored with Git LFS)
Normal file
BIN
wallpapers/nixfiles-animated/test.webm
(Stored with Git LFS)
Normal file
Binary file not shown.
2
wallpapers/nixfiles-static/.gitattributes
vendored
Normal file
2
wallpapers/nixfiles-static/.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.jpg filter=lfs diff=lfs merge=lfs -text
|
5
wallpapers/nixfiles-static/CREDITS.md
Normal file
5
wallpapers/nixfiles-static/CREDITS.md
Normal 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
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
BIN
wallpapers/nixfiles-static/ViktorPrevails-strange_fauna.png
(Stored with Git LFS)
Executable file
Binary file not shown.
BIN
wallpapers/nixfiles-static/del-northern-outer-cover_fin-upscale.png
(Stored with Git LFS)
Executable file
BIN
wallpapers/nixfiles-static/del-northern-outer-cover_fin-upscale.png
(Stored with Git LFS)
Executable file
Binary file not shown.
BIN
wallpapers/nixfiles-static/stalenhag-belltowers.jpg
(Stored with Git LFS)
Executable file
BIN
wallpapers/nixfiles-static/stalenhag-belltowers.jpg
(Stored with Git LFS)
Executable file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user