Fix formatting
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
{ lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
home.packages =
|
||||
with pkgs;
|
||||
[
|
||||
dig
|
||||
dnsutils
|
||||
jqp
|
||||
@@ -8,7 +10,8 @@
|
||||
rainfrog
|
||||
tenere
|
||||
wiki-tui
|
||||
] ++ (lib.optionals pkgs.stdenv.hostPlatform.isLinux [
|
||||
]
|
||||
++ (lib.optionals pkgs.stdenv.hostPlatform.isLinux [
|
||||
impala
|
||||
]);
|
||||
|
||||
|
||||
+1
-1
@@ -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;
|
||||
|
||||
+10
-2
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user