Updated common packges
This commit is contained in:
parent
9536b2a174
commit
4e57995736
@ -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 = {
|
||||||
|
@ -13,6 +13,10 @@
|
|||||||
pavucontrol
|
pavucontrol
|
||||||
unstable.youtube-music
|
unstable.youtube-music
|
||||||
|
|
||||||
|
# Image editing
|
||||||
|
gimp
|
||||||
|
inkscape
|
||||||
|
|
||||||
# CLI tools
|
# CLI tools
|
||||||
cloc
|
cloc
|
||||||
];
|
];
|
||||||
|
@ -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;
|
||||||
|
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