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); }