summaryrefslogtreecommitdiff
path: root/modules/home/christian.nix
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-04-17 12:03:46 -0500
committerChristian <[email protected]>2026-04-17 12:03:46 -0500
commitb37bb85cd72dc3aca02aaa99d944f92ce75246f2 (patch)
treebc185b306e5af248b866240dcc4771845811b760 /modules/home/christian.nix
parent0b77660443280e0dbfccf1b55785ea6db5ac2d62 (diff)
Formatting
Diffstat (limited to 'modules/home/christian.nix')
-rw-r--r--modules/home/christian.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/modules/home/christian.nix b/modules/home/christian.nix
index 8c32edc..a5af420 100644
--- a/modules/home/christian.nix
+++ b/modules/home/christian.nix
@@ -1,12 +1,17 @@
-{ config, pkgs, inputs, ... }:
+{
+ config,
+ pkgs,
+ inputs,
+ ...
+}:
{
imports = [ ./nvim ];
home.stateVersion = "25.11";
- home.packages = with pkgs; [
+ home.packages = with pkgs; [
(dmenu.override {
- conf = ./dmenu/config.h;
+ conf = ./dmenu/config.h;
})
nixfmt
];
@@ -54,7 +59,7 @@
"browser.theme.toolbar-theme" = 0;
};
extensions.packages = with inputs.nur.legacyPackages.x86_64-linux.repos.rycee.firefox-addons; [
- ublock-origin
+ ublock-origin
];
};
};
@@ -64,6 +69,5 @@
extraConfig = builtins.readFile ./xmobar/xmobarrc;
};
-
programs.home-manager.enable = true;
}