From d93a907a6b2b1b5929819d8e4e142af61787fe43 Mon Sep 17 00:00:00 2001 From: Icy-Thought Date: Wed, 6 Mar 2024 00:17:10 +0100 Subject: [PATCH] Template: updated `hosts` templates --- templates/hosts/desktop/default.nix | 25 +++++++++++++++++-------- templates/hosts/desktop/hardware.nix | 6 +++--- 2 files changed, 20 insertions(+), 11 deletions(-) diff --git a/templates/hosts/desktop/default.nix b/templates/hosts/desktop/default.nix index 40f8f585..571e3947 100644 --- a/templates/hosts/desktop/default.nix +++ b/templates/hosts/desktop/default.nix @@ -30,15 +30,24 @@ }; browsers = { default = "firefox"; - firefox.enable = true; + firefox = { + enable = true; + privacy.enable = true; + }; }; - extensions.player = { - music.enable = true; - video.enable = true; - }; - toolset.docViewer = { - enable = true; - program = "zathura"; + toolset = { + player = { + music.enable = true; + video.enable = true; + }; + social = { + base.enable = true; + matrix.withDaemon.enable = true; + }; + docViewer = { + enable = true; + program = "zathura"; + }; }; }; }; diff --git a/templates/hosts/desktop/hardware.nix b/templates/hosts/desktop/hardware.nix index 773e73c1..757bd4d1 100644 --- a/templates/hosts/desktop/hardware.nix +++ b/templates/hosts/desktop/hardware.nix @@ -42,15 +42,15 @@ nix.settings.max-jobs = lib.mkDefault 16; powerManagement.cpuFreqGovernor = "performance"; - # WARNING: DISABLE NON-EXISTANT cpu + # :WARN| DISABLE NON-EXISTANT cpu hardware.cpu.amd.updateMicrocode = true; hardware.cpu.intel.updateMicrocode = true; - # Here we enable our modules found within modules/ + # Here we enable our custom modules (snowflake/modules) modules.hardware = { pipewire.enable = true; bluetooth.enable = true; - razer.enable = true; pointer.enable = true; + printer.enable = true; }; }