From c353f076b363f8e3ba8ebfe4f5838c2beb072ae1 Mon Sep 17 00:00:00 2001 From: twoneis Date: Thu, 6 Jun 2024 00:16:08 +0200 Subject: [PATCH] and more --- devices/ellaca/options.nix | 2 +- devices/pleniscenta/options.nix | 2 +- modules/home/default.nix | 2 +- options.nix | 2 +- outputs.nix | 8 ++++++-- 5 files changed, 10 insertions(+), 6 deletions(-) diff --git a/devices/ellaca/options.nix b/devices/ellaca/options.nix index 5795a2d..3c3f5ef 100644 --- a/devices/ellaca/options.nix +++ b/devices/ellaca/options.nix @@ -1,5 +1,5 @@ { ... }: { - minimal = false; + minimalHome = false; withAudio = true; withBluetooth = true; diff --git a/devices/pleniscenta/options.nix b/devices/pleniscenta/options.nix index 719044f..e61e7a2 100644 --- a/devices/pleniscenta/options.nix +++ b/devices/pleniscenta/options.nix @@ -1,5 +1,5 @@ { ... }: { - minimal = false; + minimalHome = false; withAudio = true; withBluetooth = true; diff --git a/modules/home/default.nix b/modules/home/default.nix index 42d2a3c..7ceaeb8 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -1,5 +1,5 @@ { config, ... }: let - imp = if config.minimal then [ + imp = if config.minimalHome then [ ./utils ] else [ ./browser diff --git a/options.nix b/options.nix index 512568c..c87f183 100644 --- a/options.nix +++ b/options.nix @@ -1,6 +1,6 @@ { lib, ... }: { options = with lib; { - minimal = mkEnableOption "Minimal setup with only cli utilities"; + minimalHome = mkEnableOption "Minimal home manager configuration with only cli utilities"; withAudio = mkEnableOption "Enable support for audio"; withBluetooth = mkEnableOption "Enable bluetooth"; diff --git a/outputs.nix b/outputs.nix index c19909d..387d219 100644 --- a/outputs.nix +++ b/outputs.nix @@ -1,7 +1,8 @@ { nixpkgs, home-manager, niri, ... }@inputs: { nixosConfigurations = { # AMD Ryzen 5600X - # nvidia GeForce GTX 1060 (6GB) + # Nvidia GeForce GTX 1060 (6GB) + # 32GB RAM ellaca = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { @@ -16,7 +17,10 @@ ]; }; - # Zotac Mini + # Zotac ZBOX-CI327NANO + # Intel Celeron N3450 + # Intel HD Graphics 500 + # 8GB RAM pleniscenta = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = {