mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 03:10:19 +01:00
Handle NixOS renames
This commit is contained in:
parent
bdb03fc423
commit
0650f40a75
2 changed files with 6 additions and 11 deletions
|
|
@ -28,9 +28,9 @@
|
|||
};
|
||||
|
||||
environment.pathsToLink = [ "/share/zsh" ];
|
||||
fonts.enableDefaultFonts = true;
|
||||
fonts.enableDefaultPackages = true;
|
||||
fonts = {
|
||||
fonts = with pkgs; [
|
||||
packages = with pkgs; [
|
||||
(nerdfonts.override { fonts = [ "Hack" ]; })
|
||||
dejavu_fonts
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
{ pkgs, config, ... }:
|
||||
{
|
||||
xdg = {
|
||||
portal = {
|
||||
enable = true;
|
||||
extraPortals = with pkgs; [
|
||||
xdg-desktop-portal-wlr
|
||||
xdg-desktop-portal-gtk
|
||||
];
|
||||
};
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
wlr.enable = true;
|
||||
};
|
||||
|
||||
networking.firewall = {
|
||||
|
|
@ -67,7 +62,7 @@
|
|||
};
|
||||
hardware.sane.enable = true;
|
||||
services.avahi = {
|
||||
nssmdns = true;
|
||||
nssmdns4 = true;
|
||||
enable = true;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue