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

24 lines
No EOL
308 B
Nix

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