Compare commits

...

2 commits

Author SHA1 Message Date
72c8e3c2d9
add MALLOC_PERTURB_ 2024-02-19 16:32:50 +01:00
3f7796b4e9
move fonts to options 2024-02-17 19:59:50 +01:00
2 changed files with 17 additions and 11 deletions

View file

@ -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" ];
@ -126,6 +115,8 @@
CHROME_EXECUTABLE = "${pkgs.ungoogled-chromium}/bin/chromium";
MALLOC_PERTURB_ = "$(($RANDOM % 255 + 1))";
#NIXOS_OZONE_WL = "1";
#WLR_DRM_DEVICES = "/dev/dri/card0:/dev/dri/card1";

15
options/desktop/fonts.nix Normal file
View 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
];
}