update
This commit is contained in:
parent
1d57dd5bc2
commit
2ba8a7b552
6 changed files with 33 additions and 11 deletions
|
@ -25,7 +25,25 @@
|
|||
dina-font
|
||||
proggyfonts
|
||||
iosevka
|
||||
nerdfonts
|
||||
# nerdfonts need to fix
|
||||
/*
|
||||
error: nerdfonts has been separated into individual font packages under the namespace nerd-fonts.
|
||||
For example change:
|
||||
fonts.packages = [
|
||||
...
|
||||
(pkgs.nerdfonts.override { fonts = [ "0xproto" "DroidSansMono" ]; })
|
||||
]
|
||||
to
|
||||
fonts.packages = [
|
||||
...
|
||||
pkgs.nerd-fonts._0xproto
|
||||
pkgs.nerd-fonts.droid-sans-mono
|
||||
]
|
||||
or for all fonts
|
||||
fonts.packages = [ ... ] ++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts)
|
||||
*/
|
||||
|
||||
|
||||
];
|
||||
|
||||
fonts.fontDir.enable = true;
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
# Set User 'elias' icon to tootbrute.png image
|
||||
system.activationScripts.script.text = ''
|
||||
mkdir -p /var/lib/AccountsService/{icons,users}
|
||||
cp /home/elias/nixos-greynix/files/tootbrute.png /var/lib/AccountsService/icons/elias
|
||||
cp /home/elias/nix-greynix/files/tootbrute.png /var/lib/AccountsService/icons/elias
|
||||
echo -e "[User]\nIcon=/var/lib/AccountsService/icons/elias\n" > /var/lib/AccountsService/users/elias
|
||||
|
||||
chown root:root /var/lib/AccountsService/users/elias
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue