infra/nix/os/devices/fwhost1/pkg.nix

18 lines
421 B
Nix
Raw Normal View History

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