Updated common packges
This commit is contained in:
parent
9536b2a174
commit
4e57995736
@ -16,6 +16,7 @@
|
||||
#../../modules/system/utils/fprint.nix
|
||||
../../modules/system/utils/garbage-collection.nix
|
||||
../../modules/system/utils/locale.nix
|
||||
../../modules/system/utils/printing.nix
|
||||
];
|
||||
|
||||
nix.settings = {
|
||||
|
@ -13,6 +13,10 @@
|
||||
pavucontrol
|
||||
unstable.youtube-music
|
||||
|
||||
# Image editing
|
||||
gimp
|
||||
inkscape
|
||||
|
||||
# CLI tools
|
||||
cloc
|
||||
];
|
||||
|
@ -1,9 +1,14 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
lazygit
|
||||
];
|
||||
programs.lazygit = {
|
||||
enable = true;
|
||||
settings = {
|
||||
services = {
|
||||
"gitea.xeovalyte.dev" = "gitea:gitea.xeovalyte.dev";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
|
8
modules/system/utils/printing.nix
Normal file
8
modules/system/utils/printing.nix
Normal file
@ -0,0 +1,8 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.printing = {
|
||||
enable = true;
|
||||
drivers = [ pkgs.hplip ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user