From bfcadd77eb74a257447fcb21293901fc488868bb Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 4 Jun 2026 22:00:39 +0200 Subject: [PATCH] fix: remove `with pkgs;`; also adds things --- hosts/fragile/default.nix | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/hosts/fragile/default.nix b/hosts/fragile/default.nix index ebcbd11..ecb3474 100644 --- a/hosts/fragile/default.nix +++ b/hosts/fragile/default.nix @@ -11,7 +11,7 @@ inputs.apple-silicon-support.nixosModules.apple-silicon-support # ./apple-silicon-support ./../../modules/services/tailscale.nix - ../../modules/core/automount.nix + # ../../modules/core/sshfs.nix ./../../modules/services/mpd.nix ./../../modules/services/mullvad.nix # ./../../modules/services/automount.nix @@ -19,6 +19,17 @@ hardware.asahi.peripheralFirmwareDirectory = ./firmware; + environment = { + systemPackages = [ + pkgs.monero-gui + pkgs.btrfs-progs + pkgs.apfs-fuse + pkgs.neovim + pkgs.wget + pkgs.acpi + ]; + }; + liv = { laptop.enable = true; creative.enable = true; @@ -33,13 +44,6 @@ time.timeZone = "Europe/Amsterdam"; - environment.systemPackages = with pkgs; [ - btrfs-progs - neovim - wget - acpi - ]; - services = { displayManager.ly.enable = true; vnstat.enable = true;