fix: enabled xdg utils to open links in wayland
This commit is contained in:
parent
69526fea77
commit
c1afec2fdb
|
@ -23,7 +23,6 @@
|
||||||
|
|
||||||
./net.nix
|
./net.nix
|
||||||
./fs.nix
|
./fs.nix
|
||||||
./smb-mounts.nix
|
|
||||||
./wireguard.nix
|
./wireguard.nix
|
||||||
|
|
||||||
../../users/patrick
|
../../users/patrick
|
||||||
|
|
|
@ -3,12 +3,14 @@
|
||||||
useNetworkd = true;
|
useNetworkd = true;
|
||||||
dhcpcd.enable = false;
|
dhcpcd.enable = false;
|
||||||
};
|
};
|
||||||
# Should remain enabled since nscd from glibc is kinda ass
|
|
||||||
services.nscd.enableNsncd = true;
|
|
||||||
systemd.network = {
|
systemd.network = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wait-online.anyInterface = true;
|
wait-online.anyInterface = true;
|
||||||
};
|
};
|
||||||
|
system.nssDatabases.hosts = lib.mkMerge [
|
||||||
|
(lib.mkBefore ["mdns_minimal [NOTFOUND=return]"])
|
||||||
|
(lib.mkAfter ["mdns"])
|
||||||
|
];
|
||||||
services.resolved = {
|
services.resolved = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# man I whish dnssec would be viable to use
|
# man I whish dnssec would be viable to use
|
||||||
|
|
|
@ -5,4 +5,9 @@
|
||||||
wlr.enable = false;
|
wlr.enable = false;
|
||||||
extraPortals = with pkgs; [xdg-desktop-portal-wlr];
|
extraPortals = with pkgs; [xdg-desktop-portal-wlr];
|
||||||
};
|
};
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
xdg-utils
|
||||||
|
wdisplays
|
||||||
|
wl-clipboard
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue