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