mirror of
https://codeberg.org/privacy1st/nix-git
synced 2025-01-22 06:35:44 +01:00
30 lines
1.2 KiB
Nix
30 lines
1.2 KiB
Nix
|
{ config, pkgs, ... }:
|
|||
|
let
|
|||
|
dir = "/var/lib/AccountsService/icons";
|
|||
|
user = "yoda";
|
|||
|
in
|
|||
|
{
|
|||
|
# https://discourse.nixos.org/t/setting-the-user-profile-image-under-gnome/36233/4
|
|||
|
|
|||
|
# Important: File permissions and file format
|
|||
|
# https://discourse.nixos.org/t/setting-the-user-profile-image-under-gnome/36233/7
|
|||
|
|
|||
|
# https://github.com/tolgaerok/nixos-kde/blob/3c4b55f2b0345facc5bc5157750dfaecef9d4d6c/machines/LAPTOPS/HP-i5-ProBook-6460b/user/user-profile-pic/default.nix
|
|||
|
# https://github.com/tolgaerok/nixos-kde/blob/3c4b55f2b0345facc5bc5157750dfaecef9d4d6c/user/user-home-settings/create-user-profile-pics.nix
|
|||
|
|
|||
|
# After changing my profile image in KDE Plasma 6, this file was created:
|
|||
|
# /var/lib/AccountsService/users
|
|||
|
# With content:
|
|||
|
# [User]
|
|||
|
# Icon=/var/lib/AccountsService/icons/yoda
|
|||
|
# SystemAccount=false
|
|||
|
# Permissions: root:root 0600
|
|||
|
|
|||
|
# `system.activationScripts`:
|
|||
|
# - Since these are executed every time you boot the system or run `nixos-rebuild`, it’s important that they are idempotent and fast.
|
|||
|
system.activationScripts.setGnomeProfilePicture = ''
|
|||
|
mkdir -p ${dir}
|
|||
|
cp ${(pkgs.callPackage ./profile-image.nix { })}/img.png ${dir}/${user}
|
|||
|
'';
|
|||
|
}
|