* add `.sops.yaml`, secrets, pgp keys * add nitrokey + smartcard pkgs, udev rules * update flake inputs * comment out ollama-cuda
24 lines
314 B
Nix
24 lines
314 B
Nix
{ pkgs
|
|
, lib
|
|
, ...
|
|
}:
|
|
{
|
|
imports = [
|
|
./home.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfreePredicate =
|
|
pkg:
|
|
builtins.elem (lib.getName pkg) [
|
|
"code-cursor"
|
|
"steam-original"
|
|
"steam-run"
|
|
"steam"
|
|
"steamtinkerlaunch"
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
heroic
|
|
steam
|
|
];
|
|
}
|