From 8d33775f25d457953d06aea9f9182877708579c4 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 1 Aug 2023 17:47:16 -0600 Subject: [PATCH] [NixOS] Update biskcomp --- nixos/machines/biskcomp.nix | 9 +++++++-- nixos/raspberry-pi.nix | 7 +------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nixos/machines/biskcomp.nix b/nixos/machines/biskcomp.nix index 53913afa..4497c125 100644 --- a/nixos/machines/biskcomp.nix +++ b/nixos/machines/biskcomp.nix @@ -3,7 +3,7 @@ ../internet-computer.nix ../raspberry-pi.nix ../base.nix - ../desktop.nix + # ../desktop.nix # ../xmonad.nix ]; @@ -11,6 +11,11 @@ services.xrdp.defaultWindowManager = "startplasma-x11"; networking.firewall.allowedTCPPorts = [ 3389 ]; + fileSystems."/" = { + device = "/dev/disk/by-label/NIXOS"; + fsType = "ext4"; + }; + services.home-assistant = { enable = true; extraComponents = [ @@ -27,5 +32,5 @@ networking.hostName = "biskcomp"; - system.stateVersion = "21.05"; + system.stateVersion = "23.10"; } diff --git a/nixos/raspberry-pi.nix b/nixos/raspberry-pi.nix index 6426a76d..190b852b 100644 --- a/nixos/raspberry-pi.nix +++ b/nixos/raspberry-pi.nix @@ -22,6 +22,7 @@ generic-extlinux-compatible.enable = true; }; }; + boot.extraModulePackages = [ ]; boot.kernelParams = [ ]; @@ -33,12 +34,6 @@ powerManagement.cpuFreqGovernor = "ondemand"; - fileSystems."/" = { - device = "/dev/disk/by-label/NIXOS_SD"; - fsType = "ext4"; - options = [ "noatime" ]; - }; - environment.systemPackages = with pkgs; [ raspberrypi-eeprom ];