From ba755f300f75aca61a7aa132912e077781c7f9b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 7 Apr 2024 13:06:19 +0100 Subject: [PATCH] network displays and ntfs support --- nixos/common.nix | 2 +- nixos/gnome/system.nix | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) 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 ]; }