Nix-Deploy/modules/desktop/core/default.nix
2025-07-08 23:31:02 -04:00

34 lines
No EOL
507 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.core;
in {
imports = [./gaming.nix ./desktop.nix];
config = {
environment.systemPackages = with pkgs; [
btop
wget
];
programs= {
nh = {
enable = true;
flake = "/home/brandon/.nixos-conf";
};
git = {
enable = true;
config = {
user = {
email = "brandon@logical-code.com";
name = "logical-code";
};
};
};
};
};
}