feat: add dot013-shell

This commit is contained in:
Guz
2025-01-09 23:10:54 -03:00
parent 6e5ad5973a
commit 596e5ef023
4 changed files with 534 additions and 89 deletions

View File

@@ -5,8 +5,9 @@
...
} @ args: {
imports = [
inputs.dot013-environment.homeManagerModule
inputs.rec-sh.homeManagerModules.rec-sh
inputs.dot013-environment.homeManagerModule
inputs.dot013-neovim.homeManagerModules.neovim
];
@@ -96,25 +97,31 @@
};
nixpkgs.config.allowUnfree = true;
nixpkgs.config.allowUnfreePredicate = _: true;
home.packages = with pkgs; [
chromium
blender
vesktop
gimp
gamemode
lutris
pavucontrol
libreoffice
# lmms
pinentry
gnome.nautilus
inkscape
latexrun
zathura
ferdium
act
protonup
showmethekey
bluetuith
];
home.packages = with pkgs;
[
chromium
blender
vesktop
gimp
gamemode
lutris
pavucontrol
libreoffice
# lmms
pinentry
gnome.nautilus
inkscape
latexrun
zathura
ferdium
act
protonup
showmethekey
bluetuith
]
++ (with inputs.dot013-shell.packages.${pkgs.system}; [
neovim
yazi
zellij
]);
}

View File

@@ -5,9 +5,10 @@
...
} @ args: {
imports = [
inputs.dot013-environment.homeManagerModule
inputs.rec-sh.homeManagerModules.rec-sh
inputs.dot013-neovim.homeManagerModules.neovim
inputs.dot013-environment.homeManagerModule
];
programs.rec-sh.enable = true;
@@ -89,14 +90,21 @@
nixpkgs.config.allowUnfree = true;
nixpkgs.config.allowUnfreePredicate = _: true;
home.packages = with pkgs; [
pavucontrol
libreoffice
pinentry
gnome.nautilus
ferdium
act
showmethekey
bluetuith
];
home.packages = with pkgs;
[
ungoogled-chromium
pavucontrol
libreoffice
pinentry
gnome.nautilus
ferdium
act
showmethekey
bluetuith
]
++ (with inputs.dot013-shell.packages.${pkgs.system}; [
neovim
yazi
zellij
]);
}