From a042a3a0e018cd7abceae67442ea3ebe4b114c24 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Mon, 28 Jul 2025 22:13:03 -0500 Subject: [PATCH] Fix formatting --- darwin/baseline.nix | 1 - home/baseline/tools.nix | 25 ++++++++++++++----------- modules/hm/gui.nix | 2 +- pkgs/hms/default.nix | 12 ++++++++++-- 4 files changed, 25 insertions(+), 15 deletions(-) diff --git a/darwin/baseline.nix b/darwin/baseline.nix index e6bb11e..ddb199f 100644 --- a/darwin/baseline.nix +++ b/darwin/baseline.nix @@ -1,5 +1,4 @@ { - config, pkgs, ... }: diff --git a/home/baseline/tools.nix b/home/baseline/tools.nix index e40f890..f519db9 100644 --- a/home/baseline/tools.nix +++ b/home/baseline/tools.nix @@ -1,16 +1,19 @@ { lib, pkgs, ... }: { - home.packages = with pkgs; [ - dig - dnsutils - jqp - iamb - rainfrog - tenere - wiki-tui - ] ++ (lib.optionals pkgs.stdenv.hostPlatform.isLinux [ - impala - ]); + home.packages = + with pkgs; + [ + dig + dnsutils + jqp + iamb + rainfrog + tenere + wiki-tui + ] + ++ (lib.optionals pkgs.stdenv.hostPlatform.isLinux [ + impala + ]); programs = { zellij = { diff --git a/modules/hm/gui.nix b/modules/hm/gui.nix index f2cfa14..7df5422 100644 --- a/modules/hm/gui.nix +++ b/modules/hm/gui.nix @@ -69,7 +69,7 @@ in ]); programs.firefox = { - enable = true; #(!pkgs.stdenv.hostPlatform.isDarwin); + enable = true; # (!pkgs.stdenv.hostPlatform.isDarwin); package = pkgs.firefox-bin; policies = { DisableAppUpdate = true; diff --git a/pkgs/hms/default.nix b/pkgs/hms/default.nix index ad0235a..fede34a 100644 --- a/pkgs/hms/default.nix +++ b/pkgs/hms/default.nix @@ -1,7 +1,15 @@ -{ writeShellApplication, coreutils-full, nix-output-monitor, ... }: +{ + writeShellApplication, + coreutils-full, + nix-output-monitor, + ... +}: writeShellApplication { name = "hms"; - runtimeInputs = [ coreutils-full nix-output-monitor ]; + runtimeInputs = [ + coreutils-full + nix-output-monitor + ]; text = (builtins.readFile ./hms.sh); }