aboutsummaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2026-02-03 20:11:02 +0100
committerschererleander <leander@schererleander.de>2026-02-03 20:11:02 +0100
commitb2372a73d7a3b0a08adba03299c7980767c0f50d (patch)
tree0344f98df5e25e9fdedbe5ab2062780227f2c640 /modules/home
parenta7b6721b7ead027ce752c30d0e105ef456fb9f24 (diff)
style(modules): format with nixfmt
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/editors/neovim/default.nix2
-rw-r--r--modules/home/editors/zed/default.nix2
-rw-r--r--modules/home/git/default.nix7
-rw-r--r--modules/home/media/jellyfin-mpv-shim/default.nix2
-rw-r--r--modules/home/media/nixcord/default.nix2
-rw-r--r--modules/home/productivity/anki/default.nix12
6 files changed, 16 insertions, 11 deletions
diff --git a/modules/home/editors/neovim/default.nix b/modules/home/editors/neovim/default.nix
index cbfd261..ef97f89 100644
--- a/modules/home/editors/neovim/default.nix
+++ b/modules/home/editors/neovim/default.nix
@@ -62,4 +62,4 @@ in
'';
};
};
-} \ No newline at end of file
+}
diff --git a/modules/home/editors/zed/default.nix b/modules/home/editors/zed/default.nix
index 5fe90ed..95c3be0 100644
--- a/modules/home/editors/zed/default.nix
+++ b/modules/home/editors/zed/default.nix
@@ -49,4 +49,4 @@ in
};
};
};
-} \ No newline at end of file
+}
diff --git a/modules/home/git/default.nix b/modules/home/git/default.nix
index a2563d5..2d0855e 100644
--- a/modules/home/git/default.nix
+++ b/modules/home/git/default.nix
@@ -5,7 +5,12 @@
}:
let
cfg = config.nx.programs.git;
- inherit (lib) mkEnableOption mkOption mkIf types;
+ inherit (lib)
+ mkEnableOption
+ mkOption
+ mkIf
+ types
+ ;
in
{
options.nx.programs.git = {
diff --git a/modules/home/media/jellyfin-mpv-shim/default.nix b/modules/home/media/jellyfin-mpv-shim/default.nix
index 679a1c6..6594a70 100644
--- a/modules/home/media/jellyfin-mpv-shim/default.nix
+++ b/modules/home/media/jellyfin-mpv-shim/default.nix
@@ -35,4 +35,4 @@ in
});
};
};
-} \ No newline at end of file
+}
diff --git a/modules/home/media/nixcord/default.nix b/modules/home/media/nixcord/default.nix
index c7f2b4b..e2390a3 100644
--- a/modules/home/media/nixcord/default.nix
+++ b/modules/home/media/nixcord/default.nix
@@ -28,4 +28,4 @@ in
};
};
};
-} \ No newline at end of file
+}
diff --git a/modules/home/productivity/anki/default.nix b/modules/home/productivity/anki/default.nix
index 84b1655..6a95f83 100644
--- a/modules/home/productivity/anki/default.nix
+++ b/modules/home/productivity/anki/default.nix
@@ -13,12 +13,12 @@ in
};
config = mkIf cfg.enable {
programs.anki = {
- enable = true;
- #style = "native";
- #addons = with pkgs.ankiAddons; [
- # anki-connect
- # review-heatmap
- #];
+ enable = true;
+ #style = "native";
+ #addons = with pkgs.ankiAddons; [
+ # anki-connect
+ # review-heatmap
+ #];
};
};
}