forked from poz/niksos
move fonts to options
This commit is contained in:
parent
3ed8723607
commit
3f7796b4e9
2 changed files with 15 additions and 11 deletions
|
@ -103,17 +103,6 @@
|
|||
|
||||
security.polkit.enable = true;
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
material-design-icons
|
||||
(nerdfonts.override { fonts = [
|
||||
"JetBrainsMono"
|
||||
]; })
|
||||
noto-fonts
|
||||
noto-fonts-cjk-sans
|
||||
noto-fonts-cjk-serif
|
||||
noto-fonts-emoji
|
||||
];
|
||||
|
||||
users.users.${config'.username} = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" "networkmanager" "libvirtd" ];
|
||||
|
|
15
options/desktop/fonts.nix
Normal file
15
options/desktop/fonts.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
fonts.packages = with pkgs; [
|
||||
material-design-icons
|
||||
(nerdfonts.override { fonts = [
|
||||
"JetBrainsMono"
|
||||
]; })
|
||||
noto-fonts
|
||||
noto-fonts-cjk-sans
|
||||
noto-fonts-cjk-serif
|
||||
noto-fonts-emoji
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue