Johannes Hendrik Gerard van der Weide 2024-04-14 23:03:46 +02:00
parent 2a0dcb62af
commit 8284192882
2 changed files with 24 additions and 2 deletions

View File

@ -1,2 +0,0 @@
# EchoOfTheSelf

24
flake.nix Normal file
View File

@ -0,0 +1,24 @@
{
description = "Quoting Hertog";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { nixpkgs, ... }:
let
forAllSystems = function:
nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-linux"
]
(system: function nixpkgs.legacyPackages.${system});
in {
packages = forAllSystems (pkgs: {
default = pkgs.writeShellScriptBin "launch" ''
xdg-open https://shattereddisk.github.io/rickroll/rickroll.mp4
nix run git+https://git.saragerretsen.nl/Hertog/EchoOfTheSelf
'';
});
};
}