From a1855d7e148852de6107e5b8ffdf5ec4b0315151 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Mon, 5 Jun 2023 14:59:26 +0200 Subject: [PATCH] Freya: fix config for 23.05 --- flake.nix | 6 +++--- freya/configuration.nix | 5 ++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index 50ae160..894fc46 100644 --- a/flake.nix +++ b/flake.nix @@ -196,13 +196,13 @@ system = "aarch64-linux"; modules = commonModules ++ [ nixos-hardware.nixosModules.raspberry-pi-4 - ./freya/hardware-configuration.nix - ./freya/configuration.nix - ({ lib, ... }: { boot.supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ]; }) + ./freya/hardware-configuration.nix + ./freya/configuration.nix + ./nixos_modules/garage.nix # ./nixos_modules/nextcloud.nix ] ++ homeManagerModules ++ [ diff --git a/freya/configuration.nix b/freya/configuration.nix index 0c9bb2c..fe27d64 100644 --- a/freya/configuration.nix +++ b/freya/configuration.nix @@ -11,15 +11,14 @@ bluetooth = { enable = true; package = pkgs.bluezFull; }; opengl = { enable = true; driSupport = true; }; raspberry-pi."4" = { - audio.enable = true; - fkms-3d.enable = true; # GPU + # audio.enable = true; # AUDIO + # fkms-3d.enable = true; # GPU }; }; i18n.defaultLocale = "it_IT.UTF-8"; networking.hostName = "freya"; - # networking.firewall.allowedTCPPorts = [ 80 ]; networking.firewall = { enable = true; allowPing = true;