diff --git a/nixos/common.nix b/nixos/common.nix index af84c63f..02fb7832 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -11,7 +11,7 @@ in { ]; security.allowUserNamespaces = true; - + boot.supportedFilesystems = [ "ntfs" ]; environment.enableDebugInfo = true; environment.systemPackages = with pkgs; [ diff --git a/nixos/gnome/system.nix b/nixos/gnome/system.nix index 09fc9e91..8194dc0b 100644 --- a/nixos/gnome/system.nix +++ b/nixos/gnome/system.nix @@ -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 ]; }