add scripts

This commit is contained in:
sadan 2024-11-17 21:20:03 -05:00
parent 8cc2802a15
commit 5a0e0eb481
No known key found for this signature in database
7 changed files with 78 additions and 33 deletions

View file

@ -1,9 +1,22 @@
{ config, pkgs, ... }:
{
config,
pkgs,
inputs,
...
}:
let
file = import ../../files.nix { inherit config; };
shell = import ../../shell.nix { inherit config pkgs; };
pkgTypes = import ../../pkgs.nix { inherit pkgs config; };
file = import ../../files.nix { inherit config cpkg; };
shell = import ../../shell.nix { inherit config pkgs cpkg; };
cpkg = import ../../../customPackages { inherit pkgs inputs; };
pkgTypes = import ../../pkgs.nix {
inherit
pkgs
config
inputs
cpkg
;
};
packages = pkgTypes.dev ++ pkgTypes.gui ++ pkgTypes.general ++ pkgTypes.scripts ++ pkgTypes.gaming;
in
{
@ -27,7 +40,6 @@ in
home.username = "meyer";
home.homeDirectory = "/home/meyer";
# The home.packages option allows you to install Nix packages into your
# environment.
home = {