Skip to content

Commit

Permalink
🐛 Fix GNOME avatar
Browse files Browse the repository at this point in the history
  • Loading branch information
Snuggle committed Sep 25, 2024
1 parent d862be9 commit 71fe6ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@
home.file."Vault".source = config.lib.file.mkOutOfStoreSymlink "/mnt/homesweet/Vault";
home.file."Videos".source = config.lib.file.mkOutOfStoreSymlink "/mnt/homesweet/Videos";

home.file.".face".source = builtins.fetchurl {
url = "https://github.com/snuggle.png";
sha256 = "1x4ajji4ip6bw9dkwf7bykkw00avzw7wg21cn0w4kwbcv71h052c";
}

home.file = {
".config/home-manager/home.nix" = {
source = config.lib.file.mkOutOfStoreSymlink ../users/snuggle.nix;
Expand Down
4 changes: 2 additions & 2 deletions hosts/-common/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@
system = {
autoUpgrade.enable = true;

activationScripts.setavatar.text = ''
/* activationScripts.setavatar.text = ''
accountServiceIcons="/var/lib/AccountsService/icons/snuggle"
accountServiceUsers="/var/lib/AccountsService/users/snuggle"
cp ${(builtins.fetchurl {
Expand All @@ -299,7 +299,7 @@
if ! grep -Fxq "Icon=$accountServiceIcons" "$accountServiceUsers"; then
echo "Icon=$accountServiceIcons" >> "$accountServiceUsers"
fi
'';
''; */

# Setup symlinks for NAS-based home directory
/* userActivationScripts.linktosharedfolder.text = ''
Expand Down

0 comments on commit 71fe6ea

Please sign in to comment.