24 lines
No EOL
308 B
Nix
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";
|
|
};
|
|
};
|
|
|
|
} |