Compare commits
4 commits
e974f42f63
...
c42affa347
Author | SHA1 | Date | |
---|---|---|---|
c42affa347 | |||
f3672294aa | |||
20a5f5670b | |||
cae52377df |
4 changed files with 23 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ art-lotte, stdenvNoCC }:
|
{ art-lotte, stdenvNoCC }:
|
||||||
stdenvNoCC.mkDerivation {
|
stdenvNoCC.mkDerivation {
|
||||||
pname = "sfw-bgs";
|
pname = "nsfw-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
|
||||||
ln -svf $src/$f $out/$f
|
cp $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
|
||||||
ln -svf $src/$f $out/$f
|
cp $src/$f $out/$f
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
];
|
];
|
||||||
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,6 +1,24 @@
|
||||||
{ ... }:
|
{ 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