Formatting

This commit is contained in:
Nox Sluijtman 2025-04-22 18:05:14 +02:00
parent b05fbe66c7
commit 5b5c9c3e6e
Signed by: Egg
SSH key fingerprint: SHA256:2sG9X3C7Xvq2svGumz1/k7cm8l4G9+qAtAeugqB4J9M

View file

@ -1,12 +1,21 @@
{ description = "A collection of wallpapers"; {
description = "A collection of wallpapers";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
}; };
outputs = { self, nixpkgs, flake-utils}: outputs =
flake-utils.lib.eachDefaultSystem (system: {
let pkgs = import nixpkgs { inherit system; }; self,
in { nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
packages = { packages = {
default = pkgs.stdenv.mkDerivation { default = pkgs.stdenv.mkDerivation {
pname = "wallpapers"; pname = "wallpapers";
@ -20,5 +29,6 @@
}; };
}; };
}); }
);
} }