13 lines
252 B
Nix
13 lines
252 B
Nix
|
|
{ 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
|
||
|
|
];
|
||
|
|
};
|
||
|
|
}
|