fix: additional tweaks

This commit is contained in:
Michael Thomas 2025-05-09 18:15:36 -04:00
parent a0f545a5ce
commit 5f0a1d6098
5 changed files with 37 additions and 14 deletions

View File

@ -0,0 +1,20 @@
{
pkgs,
lib,
config,
...
}: let
cfg = config.my.utilities;
in {
options.my.utilities = {
enable = lib.mkEnableOption "utilities";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
wget
zip
unzip
];
};
}

View File

@ -72,6 +72,7 @@
my.hyprland.enable = true; my.hyprland.enable = true;
my.libreoffice.enable = true; my.libreoffice.enable = true;
my.steam.enable = true; my.steam.enable = true;
my.utilities.enable = true;
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
users.users.michael = { users.users.michael = {

View File

@ -11,5 +11,6 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
docker-client docker-client
docker-compose docker-compose
distrobox
]; ];
} }

View File

@ -18,20 +18,18 @@ in {
programs.ags = { programs.ags = {
enable = true; enable = true;
extraPackages = with pkgs; [ extraPackages =
bun (with pkgs; [
which fzf
fzf ])
# inputs.matugen.packages.${system}.default ++ (with inputs.ags.packages.${pkgs.system}; [
slurp battery
wf-recorder hyprland
wl-clipboard mpris
wayshot network
swappy tray
pavucontrol wireplumber
networkmanager ]);
gtk3
];
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [

View File

@ -5,8 +5,11 @@
}: { }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
git-lfs git-lfs
lazygit
]; ];
home.shellAliases.lg = "lazygit";
# Use pkgs.gitAndTools.gitFull in order to get libsecret support # Use pkgs.gitAndTools.gitFull in order to get libsecret support
programs.git = { programs.git = {
enable = true; enable = true;