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 }:
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "nsfw-bgs";
|
||||
pname = "sfw-bgs";
|
||||
inherit (art-lotte) version;
|
||||
src = art-lotte;
|
||||
dontUnpack = true;
|
||||
|
@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation {
|
|||
installPhase = ''
|
||||
mkdir $out
|
||||
for f in $nsfwBgs; do
|
||||
cp $src/$f $out/$f
|
||||
ln -svf $src/$f $out/$f
|
||||
done
|
||||
'';
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ stdenvNoCC.mkDerivation {
|
|||
installPhase = ''
|
||||
mkdir $out
|
||||
for f in $sfwBgs; do
|
||||
cp $src/$f $out/$f
|
||||
ln -svf $src/$f $out/$f
|
||||
done
|
||||
'';
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
];
|
||||
hashedPasswordFile = config.sops.secrets."users/users/darkkirb/hashedPassword".path;
|
||||
extraGroups = [ "wheel" ];
|
||||
description = "Charlotte 🦝 Delenk";
|
||||
};
|
||||
sops.secrets."users/users/darkkirb/hashedPassword" = {
|
||||
neededForUsers = true;
|
||||
|
|
|
@ -1,24 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./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