diff --git a/hosts/FredOS-Gaming.nix b/hosts/FredOS-Gaming.nix new file mode 100644 index 0000000..e05545b --- /dev/null +++ b/hosts/FredOS-Gaming.nix @@ -0,0 +1,12 @@ +{ config, pkgs, lib, ... }: + +{ +config = lib.mkIf (config.networking.hostName == "FredOS-Gaming") { + + # List packages installed in system profile. To search, run: + # $ nix search wget + environment.systemPackages = with pkgs; [ + #Package name + ]; +}; +}