mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-26 14:08:20 -04:00
add scripts
This commit is contained in:
parent
8cc2802a15
commit
5a0e0eb481
7 changed files with 78 additions and 33 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue