Updated common packges

This commit is contained in:
xeovalyte 2024-04-04 12:37:57 +02:00
parent 9536b2a174
commit 4e57995736
No known key found for this signature in database
4 changed files with 21 additions and 3 deletions

View File

@ -16,6 +16,7 @@
#../../modules/system/utils/fprint.nix #../../modules/system/utils/fprint.nix
../../modules/system/utils/garbage-collection.nix ../../modules/system/utils/garbage-collection.nix
../../modules/system/utils/locale.nix ../../modules/system/utils/locale.nix
../../modules/system/utils/printing.nix
]; ];
nix.settings = { nix.settings = {

View File

@ -13,6 +13,10 @@
pavucontrol pavucontrol
unstable.youtube-music unstable.youtube-music
# Image editing
gimp
inkscape
# CLI tools # CLI tools
cloc cloc
]; ];

View File

@ -1,9 +1,14 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
home.packages = with pkgs; [ programs.lazygit = {
lazygit enable = true;
]; settings = {
services = {
"gitea.xeovalyte.dev" = "gitea:gitea.xeovalyte.dev";
};
};
};
programs.git = { programs.git = {
enable = true; enable = true;

View File

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
services.printing = {
enable = true;
drivers = [ pkgs.hplip ];
};
}