Compare commits
2 commits
3ed8723607
...
72c8e3c2d9
Author | SHA1 | Date | |
---|---|---|---|
72c8e3c2d9 | |||
3f7796b4e9 |
2 changed files with 17 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" ];
|
||||
|
@ -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
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