Create FredOS-Gaming.nix

This commit is contained in:
ediblerope 2025-12-02 21:21:42 +00:00 committed by GitHub
parent e2e5cde9b5
commit 405e6434ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

12
hosts/FredOS-Gaming.nix Normal file
View file

@ -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
];
};
}