aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-01-22 10:46:49 -0300
committerEuAndreh <eu@euandre.org>2021-01-22 10:46:49 -0300
commit1ffcb5f4f850a65d167199ac1ccfcd9969fff540 (patch)
tree5ac663d690f775c78d4a4257e67d1e0637997321
parentfzf.sh: Add remembering to f() (diff)
downloaddotfiles-1ffcb5f4f850a65d167199ac1ccfcd9969fff540.tar.gz
dotfiles-1ffcb5f4f850a65d167199ac1ccfcd9969fff540.tar.xz
nixfmt
-rw-r--r--nixos/common.nix8
-rw-r--r--nixos/configuration.nix3
-rw-r--r--nixos/not-on-nixpkgs/remembering.nix3
3 files changed, 9 insertions, 5 deletions
diff --git a/nixos/common.nix b/nixos/common.nix
index 3d39804f..59160acf 100644
--- a/nixos/common.nix
+++ b/nixos/common.nix
@@ -26,8 +26,10 @@ let
};
priv-crons = { pacheco-job = "0 12 5 * *"; };
in {
- crons = builtins.mapAttrs
- (cron-for-name "/home/andreh/dev/libre/dotfiles/cron") pub-crons.no-mail
- // builtins.mapAttrs (cron-for-name "/home/andreh/dev/libre/dotfiles/cron/generated") pub-crons.with-mail
+ crons =
+ builtins.mapAttrs (cron-for-name "/home/andreh/dev/libre/dotfiles/cron")
+ pub-crons.no-mail // builtins.mapAttrs
+ (cron-for-name "/home/andreh/dev/libre/dotfiles/cron/generated")
+ pub-crons.with-mail
// builtins.mapAttrs (cron-for-name "/home/andreh/annex/cron") priv-crons;
}
diff --git a/nixos/configuration.nix b/nixos/configuration.nix
index 48cb8e43..6ce78603 100644
--- a/nixos/configuration.nix
+++ b/nixos/configuration.nix
@@ -49,7 +49,8 @@ in {
hostName = localConfiguration.hostName;
networkmanager.enable = true;
extraHosts = builtins.readFile (builtins.fetchurl {
- url = "https://raw.githubusercontent.com/StevenBlack/hosts/885d870134093060d15e3a295c4d5a8efb84e20e/alternates/fakenews-gambling-porn-social/hosts";
+ url =
+ "https://raw.githubusercontent.com/StevenBlack/hosts/885d870134093060d15e3a295c4d5a8efb84e20e/alternates/fakenews-gambling-porn-social/hosts";
sha256 = "0mv61ki66jrzyzd8l7kf3xhfzk7z93c2rb76bxr35jg78wp252q0";
});
};
diff --git a/nixos/not-on-nixpkgs/remembering.nix b/nixos/not-on-nixpkgs/remembering.nix
index 9f70b726..acb0dffd 100644
--- a/nixos/not-on-nixpkgs/remembering.nix
+++ b/nixos/not-on-nixpkgs/remembering.nix
@@ -5,7 +5,8 @@ stdenv.mkDerivation rec {
version = "0.1.0";
src = fetchurl {
- url = "https://git.euandreh.xyz/${pname}/snapshot/${pname}-${version}.tar.gz";
+ url =
+ "https://git.euandreh.xyz/${pname}/snapshot/${pname}-${version}.tar.gz";
sha256 = "0ahkppxzx8xwxb4lnq13vjr7sxyhxj0z4idwyj9gi49hjckwrxwq";
};
makeFlags = [ "PREFIX=$(out)" ];