nixos/hosts/FredOS-Gaming.nix

13 lines
252 B
Nix
Raw Normal View History

2025-12-02 21:21:42 +00:00
{ 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
];
};
}