diff options
author | Martin Fischer <martin@push-f.com> | 2025-07-21 06:15:08 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-07-21 06:39:51 +0200 |
commit | 01a80a6c2e5ad4fcee50de5da50d97a9fd34518d (patch) | |
tree | 19683bb61b9ea34d2d807e99255a11b452711127 /nixos/hosts | |
parent | deadb9491705c32b6a82530b9334aa67d1904aac (diff) |
Diffstat (limited to 'nixos/hosts')
-rw-r--r-- | nixos/hosts/hamac/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nixos/hosts/hamac/default.nix b/nixos/hosts/hamac/default.nix index 9c4bde6..523b7d6 100644 --- a/nixos/hosts/hamac/default.nix +++ b/nixos/hosts/hamac/default.nix @@ -2,7 +2,12 @@ { config, lib, pkgs, ... }: +let + sources = import <top/npins>; + pkgs-unstable = import sources.nixpkgs-unstable {}; +in { + _module.args = { inherit pkgs-unstable; }; imports = [ ./hardware-configuration.nix <top/profiles/workstation> |