From 405e6434baea3cc2d3b28aaa36c1695a19c16875 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Tue, 2 Dec 2025 21:21:42 +0000 Subject: [PATCH] Create FredOS-Gaming.nix --- hosts/FredOS-Gaming.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 hosts/FredOS-Gaming.nix 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 + ]; +}; +}