aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-07-29 12:53:21 +0200
committerschererleander <leander@schererleander.de>2025-07-29 12:53:21 +0200
commit9a8116cbc211f03982e3e4dfdc326df38b4a0574 (patch)
tree61df62ba2a6ca8297e90b48438b5cc2489b3bce1
parent0c1a189c5385c580f9522757f9c3974242134cbe (diff)
chore: formatting
-rw-r--r--modules/home-manager/dunst.nix8
-rw-r--r--modules/home-manager/foot.nix9
-rw-r--r--modules/home-manager/gpg.nix7
-rw-r--r--modules/home-manager/nixcord.nix11
4 files changed, 25 insertions, 10 deletions
diff --git a/modules/home-manager/dunst.nix b/modules/home-manager/dunst.nix
index 87ae210..8d97dea 100644
--- a/modules/home-manager/dunst.nix
+++ b/modules/home-manager/dunst.nix
@@ -1,7 +1,11 @@
-{ config, pkgs, lib, ...}:
+{
+ config,
+ lib,
+ ...
+}:
{
- options.dunst.enable = lib.mkEnableOption "Setup dunst notification";
+ options.dunst.enable = lib.mkEnableOption "Enable dunst notification";
config = lib.mkIf config.dunst.enable {
services.dunst = {
enable = true;
diff --git a/modules/home-manager/foot.nix b/modules/home-manager/foot.nix
index 69f6bf2..573af7f 100644
--- a/modules/home-manager/foot.nix
+++ b/modules/home-manager/foot.nix
@@ -1,7 +1,12 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
{
- options.foot.enable = lib.mkEnableOption "Enable and configure the Foot terminal emulator";
+ options.foot.enable = lib.mkEnableOption "Enable foot terminal";
config = lib.mkIf config.foot.enable {
home.packages = with pkgs; [
nerd-fonts.space-mono
diff --git a/modules/home-manager/gpg.nix b/modules/home-manager/gpg.nix
index 257295e..959d8b5 100644
--- a/modules/home-manager/gpg.nix
+++ b/modules/home-manager/gpg.nix
@@ -1,4 +1,9 @@
-{ config, pkgs, lib, ...}:
+{
+ config,
+ pkgs,
+ lib,
+ ...
+}:
{
options.gpg.enable = lib.mkEnableOption "Setup gpg and agent";
diff --git a/modules/home-manager/nixcord.nix b/modules/home-manager/nixcord.nix
index 0be180b..c45566b 100644
--- a/modules/home-manager/nixcord.nix
+++ b/modules/home-manager/nixcord.nix
@@ -1,10 +1,10 @@
-{ config, lib, pkgs, inputs, ... }:
+{ config, lib, ... }:
{
options.nixcord.enable = lib.mkEnableOption "Enable nixcord and setup";
config = lib.mkIf config.nixcord.enable {
programs.nixcord = {
- enable = true; # enable Nixcord. Also installs discord package
+ enable = true; # enable Nixcord. Also installs discord package
#quickCss = "some CSS"; # quickCSS file
config = {
#useQuickCss = true; # use our quickCSS
@@ -13,8 +13,9 @@
#];
frameless = true; # set some Vencord options
plugins = {
- hideAttachments.enable = true; # Enable a Vencord plugin
- ignoreActivities = { # Enable a plugin and set some options
+ hideAttachments.enable = true; # Enable a Vencord plugin
+ ignoreActivities = {
+ # Enable a plugin and set some options
enable = true;
ignorePlaying = true;
ignoreWatching = true;
@@ -23,4 +24,4 @@
};
};
};
-} \ No newline at end of file
+}