240 current 2025-01-11 21:55:52 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-01-11 21:56:02 -05:00
parent d4c681d36b
commit 4c872817d2
4 changed files with 16 additions and 4 deletions

View File

@@ -14,10 +14,8 @@
old-nitrogen = pkg_with_working_nitrogen.nitrogen;
in {
imports = [
# Include the results of the hardware scan.
# ./hardware-configuration.nix
./system/system.nix
# inputs.home-manager.nixosModules.default
];
# Bootloader.
@@ -92,7 +90,7 @@ in {
extraGroups = ["networkmanager" "wheel"];
packages = with pkgs; [
kdePackages.kate
firefox
# firefox
git
arandr
procs
@@ -107,7 +105,7 @@ in {
polybar
sxhkd
bspwm
librewolf
# librewolf
eza
flameshot
neofetch

View File

@@ -6,4 +6,6 @@
programs.firefox = {
enable = true;
};
programs.librewolf.enable = true;
}

View File

@@ -0,0 +1,11 @@
{
config,
pkgs,
...
}: {
services.gpg-agent = {
enable = true;
enableSshSupport = true;
#TODO: determine if extraConfig is necessary for emacs.
};
}

View File

@@ -6,5 +6,6 @@
imports = [
./picom/default.nix
./dunst/default.nix
./gpg-agent/default.nix
];
}