Fix formatting

This commit is contained in:
Greg Hellings
2025-07-28 22:13:03 -05:00
parent d52109f7f7
commit a042a3a0e0
4 changed files with 25 additions and 15 deletions
-1
View File
@@ -1,5 +1,4 @@
{ {
config,
pkgs, pkgs,
... ...
}: }:
+5 -2
View File
@@ -1,6 +1,8 @@
{ lib, pkgs, ... }: { lib, pkgs, ... }:
{ {
home.packages = with pkgs; [ home.packages =
with pkgs;
[
dig dig
dnsutils dnsutils
jqp jqp
@@ -8,7 +10,8 @@
rainfrog rainfrog
tenere tenere
wiki-tui wiki-tui
] ++ (lib.optionals pkgs.stdenv.hostPlatform.isLinux [ ]
++ (lib.optionals pkgs.stdenv.hostPlatform.isLinux [
impala impala
]); ]);
+1 -1
View File
@@ -69,7 +69,7 @@ in
]); ]);
programs.firefox = { programs.firefox = {
enable = true; #(!pkgs.stdenv.hostPlatform.isDarwin); enable = true; # (!pkgs.stdenv.hostPlatform.isDarwin);
package = pkgs.firefox-bin; package = pkgs.firefox-bin;
policies = { policies = {
DisableAppUpdate = true; DisableAppUpdate = true;
+10 -2
View File
@@ -1,7 +1,15 @@
{ writeShellApplication, coreutils-full, nix-output-monitor, ... }: {
writeShellApplication,
coreutils-full,
nix-output-monitor,
...
}:
writeShellApplication { writeShellApplication {
name = "hms"; name = "hms";
runtimeInputs = [ coreutils-full nix-output-monitor ]; runtimeInputs = [
coreutils-full
nix-output-monitor
];
text = (builtins.readFile ./hms.sh); text = (builtins.readFile ./hms.sh);
} }