new beginning

This commit is contained in:
2024-06-30 23:27:40 +02:00
commit ec1513fbf3
52 changed files with 5459 additions and 0 deletions

24
home/work/default.nix Normal file
View File

@ -0,0 +1,24 @@
{
config,
pkgs,
devenv,
...
}: {
home = {
stateVersion = "22.11";
username = "patrick";
homeDirectory = "/home/${config.home.username}";
packages = (pkgs.callPackage ./pkgs.nix {}) ++ [devenv.packages.${pkgs.system}.devenv];
sessionPath = ["~/.local/bin"];
sessionVariables = {
SSH_AUTH_SOCK = "/run/user/1000/ssh-agent";
};
};
xdg.enable = true;
imports = builtins.concatMap import [
./programs
./services
];
}