infra/nix/os/devices/steveej-pa600/pkg.nix

12 lines
331 B
Nix
Raw 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/graphical-fullblown.nix {
inherit pkgs;
};
2022-01-07 20:44:10 +01:00
system.stateVersion = "20.09";
}