chore(nixfmt): format
This commit is contained in:
@@ -24,11 +24,11 @@ in
|
|||||||
defaultSopsFile = "${inputs.nix-secrets}/secrets.yaml";
|
defaultSopsFile = "${inputs.nix-secrets}/secrets.yaml";
|
||||||
|
|
||||||
secrets = {
|
secrets = {
|
||||||
taskwarrior_sync_server_url = {};
|
taskwarrior_sync_server_url = { };
|
||||||
taskwarrior_sync_server_client_id = {};
|
taskwarrior_sync_server_client_id = { };
|
||||||
taskwarrior_sync_encryption_secret = {};
|
taskwarrior_sync_encryption_secret = { };
|
||||||
anki_sync_user = {};
|
anki_sync_user = { };
|
||||||
anki_sync_key = {};
|
anki_sync_key = { };
|
||||||
};
|
};
|
||||||
|
|
||||||
templates."taskrc.d/sync" = {
|
templates."taskrc.d/sync" = {
|
||||||
|
|||||||
@@ -1,4 +1,10 @@
|
|||||||
{ config, inputs, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
inputs,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
bookmarks = import ./bookmarks.nix;
|
bookmarks = import ./bookmarks.nix;
|
||||||
|
|||||||
@@ -1,11 +1,19 @@
|
|||||||
{ config, inputs, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
inputs,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
bookmarks = import ./bookmarks.nix;
|
bookmarks = import ./bookmarks.nix;
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
config = lib.mkIf (config.browser.primary == "librewolf" || config.browser.secondary == "librewolf") {
|
config =
|
||||||
|
lib.mkIf (config.browser.primary == "librewolf" || config.browser.secondary == "librewolf")
|
||||||
|
{
|
||||||
programs.librewolf = {
|
programs.librewolf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nativeMessagingHosts = with pkgs; [
|
nativeMessagingHosts = with pkgs; [
|
||||||
|
|||||||
@@ -59,8 +59,7 @@ in
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file =
|
home.file = {
|
||||||
{
|
|
||||||
".inputrc".source = dotsPath + "/.inputrc";
|
".inputrc".source = dotsPath + "/.inputrc";
|
||||||
".bashrc.d/prompt".source = dotsPath + "/.bashrc.d/prompt";
|
".bashrc.d/prompt".source = dotsPath + "/.bashrc.d/prompt";
|
||||||
".bashrc.d/editor".source = dotsPath + "/.bashrc.d/editor";
|
".bashrc.d/editor".source = dotsPath + "/.bashrc.d/editor";
|
||||||
|
|||||||
Reference in New Issue
Block a user