-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
38 lines (31 loc) · 1.05 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
description = "A nixos gnome wallpaper";
inputs = {
flake-utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:nixos/nixpkgs";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
rec {
pkgs = import nixpkgs { inherit system; };
name = "nixos-wallpaper";
packages.default = (with pkgs; stdenv.mkDerivation
rec {
pname = "nixos-wallpaper";
version = "0.0.0";
src = ./.;
buildInputs = [
];
installPhase = ''
mkdir -p $out/share/backgrounds/gnome
cp $src/nix-d.svg $out/share/backgrounds/gnome
cp $src/thinknix-d.svg $out/share/backgrounds/gnome
cp $src/thinknix-l.svg $out/share/backgrounds/gnome
mkdir -p $out/share/gnome-background-properties
cp $src/thinknix.xml $out/share/gnome-background-properties/thinknix.xml
'';
meta.mainProgram = "${pname}";
});
}
);
}