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

View File

@@ -6,4 +6,6 @@
programs.firefox = { programs.firefox = {
enable = true; 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 = [ imports = [
./picom/default.nix ./picom/default.nix
./dunst/default.nix ./dunst/default.nix
./gpg-agent/default.nix
]; ];
} }