network displays and ntfs support
This commit is contained in:
parent
a2c21896bc
commit
ba755f300f
2 changed files with 6 additions and 4 deletions
|
@ -11,7 +11,7 @@ in {
|
|||
];
|
||||
|
||||
security.allowUserNamespaces = true;
|
||||
|
||||
boot.supportedFilesystems = [ "ntfs" ];
|
||||
environment.enableDebugInfo = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
@ -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 ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue