minor fixes

This commit is contained in:
2025-12-13 12:19:45 -05:00
parent 7edab3d29b
commit 8365721530
3 changed files with 9 additions and 7 deletions

View File

@@ -3,6 +3,7 @@
{pkgs, ...}: {pkgs, ...}:
{ {
# Lix
nixpkgs.overlays = [ (final: prev: { nixpkgs.overlays = [ (final: prev: {
inherit (prev.lixPackageSets.stable) inherit (prev.lixPackageSets.stable)
nixpkgs-review nixpkgs-review
@@ -10,7 +11,6 @@
nix-fast-build nix-fast-build
colmena; colmena;
}) ]; }) ];
nix.package = pkgs.lixPackageSets.stable.lix; nix.package = pkgs.lixPackageSets.stable.lix;
# 🇺🇸 # 🇺🇸
@@ -118,6 +118,7 @@
xbindkeys xbindkeys
xdotool xdotool
xmodmap xmodmap
nixfmt
]; ];
services.usbmuxd = { services.usbmuxd = {

View File

@@ -1,8 +1,8 @@
{...}: { ... }:
{ {
programs.git = { programs.git = {
enable = true; enable = true;
userName = "TheCrazyInsanity"; user.name = "TheCrazyInsanity";
userEmail = "notarealemailcheckmysite@thecrazyinsanity.win"; user.email = "notarealemailcheckmysite@thecrazyinsanity.win";
}; };
} }

View File

@@ -1,8 +1,9 @@
{pkgs, ...}: { pkgs, ... }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
discord discord
jami jami
element-desktop element-desktop
signal-desktop
]; ];
} }