nix-conf/home-manager/nixstation.nix
Thiago Sposito 2a8494b24b
feat: add sops, nitrokey support, update deps
* add `.sops.yaml`, secrets, pgp keys
* add nitrokey + smartcard pkgs, udev rules
* update flake inputs
* comment out ollama-cuda
2025-09-24 01:13:03 -03:00

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
];
}