From 6f60f3b116d41f7eb33432908971c1ef9d57aad5 Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Sun, 21 Dec 2025 19:03:56 +1000 Subject: [PATCH] Fix some errors in the refactor --- hosts/count/configuration.nix | 1 - hosts/modules/desktop.nix | 1 + hosts/modules/sway.nix | 19 ------------------- 3 files changed, 1 insertion(+), 20 deletions(-) delete mode 100644 hosts/modules/sway.nix diff --git a/hosts/count/configuration.nix b/hosts/count/configuration.nix index 83bc3c0..f81ecc3 100644 --- a/hosts/count/configuration.nix +++ b/hosts/count/configuration.nix @@ -12,7 +12,6 @@ ../modules/desktop.nix ../modules/brother-printer.nix ../modules/home.nix - ../modules/sway.nix ]; # Bootloader. diff --git a/hosts/modules/desktop.nix b/hosts/modules/desktop.nix index bdc48c9..607ab2b 100644 --- a/hosts/modules/desktop.nix +++ b/hosts/modules/desktop.nix @@ -42,6 +42,7 @@ environment.systemPackages = with pkgs; [ bitwarden-desktop libreoffice-fresh + ]; # Enable networking networking.networkmanager.enable = true; diff --git a/hosts/modules/sway.nix b/hosts/modules/sway.nix deleted file mode 100644 index c621143..0000000 --- a/hosts/modules/sway.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ config, pkgs, ... }: -{ - # Enable the Sway binary and hardware wrappers - programs.sway = { - enable = true; - wrapperFeatures.gtk = true; - }; - - # Hardware and security services that must be system-wide - services.gnome.gnome-keyring.enable = true; - security.polkit.enable = true; - programs.light.enable = true; # Allow brightness control - - # Move system-wide packages here - environment.systemPackages = with pkgs; [ - pavucontrol - light - ]; -}