Compare commits
No commits in common. "c42affa3470fc893086960207cf31633c24f7868" and "e974f42f63e08fc357867055dc5e30458af94db2" have entirely different histories.
c42affa347
...
e974f42f63
4 changed files with 4 additions and 23 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ art-lotte, stdenvNoCC }:
|
{ art-lotte, stdenvNoCC }:
|
||||||
stdenvNoCC.mkDerivation {
|
stdenvNoCC.mkDerivation {
|
||||||
pname = "nsfw-bgs";
|
pname = "sfw-bgs";
|
||||||
inherit (art-lotte) version;
|
inherit (art-lotte) version;
|
||||||
src = art-lotte;
|
src = art-lotte;
|
||||||
dontUnpack = true;
|
dontUnpack = true;
|
||||||
|
@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation {
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir $out
|
mkdir $out
|
||||||
for f in $nsfwBgs; do
|
for f in $nsfwBgs; do
|
||||||
cp $src/$f $out/$f
|
ln -svf $src/$f $out/$f
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ stdenvNoCC.mkDerivation {
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir $out
|
mkdir $out
|
||||||
for f in $sfwBgs; do
|
for f in $sfwBgs; do
|
||||||
cp $src/$f $out/$f
|
ln -svf $src/$f $out/$f
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
];
|
];
|
||||||
hashedPasswordFile = config.sops.secrets."users/users/darkkirb/hashedPassword".path;
|
hashedPasswordFile = config.sops.secrets."users/users/darkkirb/hashedPassword".path;
|
||||||
extraGroups = [ "wheel" ];
|
extraGroups = [ "wheel" ];
|
||||||
description = "Charlotte 🦝 Delenk";
|
|
||||||
};
|
};
|
||||||
sops.secrets."users/users/darkkirb/hashedPassword" = {
|
sops.secrets."users/users/darkkirb/hashedPassword" = {
|
||||||
neededForUsers = true;
|
neededForUsers = true;
|
||||||
|
|
|
@ -1,24 +1,6 @@
|
||||||
{ pkgs, ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./git.nix
|
./git.nix
|
||||||
./sops.nix
|
|
||||||
];
|
];
|
||||||
home.file.".face".source =
|
|
||||||
let
|
|
||||||
pfp = pkgs.stdenvNoCC.mkDerivation {
|
|
||||||
pname = "face";
|
|
||||||
inherit (pkgs.art-lotte) version;
|
|
||||||
src = "${pkgs.art-lotte}/2023-10-26-sammythetanuki-babylottepfp-therian.jxl";
|
|
||||||
dontUnpack = true;
|
|
||||||
nativeBuildInputs = [ pkgs.libjxl ];
|
|
||||||
buildPhase = ''
|
|
||||||
djxl $src face.png
|
|
||||||
'';
|
|
||||||
installPhase = ''
|
|
||||||
cp face.png $out
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
in
|
|
||||||
"${pfp}";
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue