network displays and ntfs support

This commit is contained in:
Cyryl Płotnicki 2024-04-07 13:06:19 +01:00
parent a2c21896bc
commit ba755f300f
2 changed files with 6 additions and 4 deletions

View File

@ -11,7 +11,7 @@ in {
];
security.allowUserNamespaces = true;
boot.supportedFilesystems = [ "ntfs" ];
environment.enableDebugInfo = true;
environment.systemPackages = with pkgs; [

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }: {
{ config, pkgs, inputs, system, ... }: {
services.xserver = {
enable = true;
displayManager.gdm.enable = true;
@ -6,7 +6,9 @@
desktopManager.gnome.enable = true;
};
services.flatpak.enable = true;
networking.firewall.trustedInterfaces = [ "p2p-wl+" ];
networking.firewall.trustedInterfaces = [ "p2p-dev-wl+" "p2p-wl+" ];
environment.systemPackages = with pkgs; [ gnome-network-displays ];
environment.systemPackages =
with inputs.nixpkgs-nixos-unstable.legacyPackages."${system}".pkgs;
[ gnome-network-displays ];
}