infra/nix/os/devices/fwhost2/pkg.nix

18 lines
400 B
Nix
Raw Permalink Normal View History

2024-11-15 10:17:56 +01:00
{ pkgs, ... }:
{
nixpkgs.config.packageOverrides =
pkgs: with pkgs; {
inherit ((import ../../../default.nix { versionsPath = ./versions.nix; })) nixPath;
2022-10-31 11:04:38 +01:00
};
2023-02-07 18:24:28 +01:00
home-manager.users.steveej = import ../../../home-manager/configuration/text-minimal.nix {
inherit pkgs;
};
2022-01-09 21:50:55 +01:00
2024-11-15 10:17:56 +01:00
environment.systemPackages = with pkgs; [
iw
wirelesstools
];
2022-01-09 21:50:55 +01:00
system.stateVersion = "21.11";
}