added custom apps

This commit is contained in:
lsoriano-mcm
2025-07-04 22:52:23 -05:00
parent e10deb6ae5
commit 352f2d923b
3 changed files with 11 additions and 1 deletions
+4 -1
View File
@@ -1,6 +1,9 @@
{
{pkgs, ...}: let
info = import ../config.nix;
in {
imports = [
../modules/home/desktop.nix
../modules/home/terminal.nix
];
home.packages = info.myConfig.nixos.Apps.packages pkgs;
}
+1
View File
@@ -1,5 +1,6 @@
{
imports = [
../../packages/fonts/home.nix
../../packages/firefox/home.nix
];
}
+6
View File
@@ -0,0 +1,6 @@
{
programs.steam = {
enable = true;
gamescopeSession.enable = true;
};
}