diff options
Diffstat (limited to 'nixos/hosts/hamac/default.nix')
-rw-r--r-- | nixos/hosts/hamac/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nixos/hosts/hamac/default.nix b/nixos/hosts/hamac/default.nix index e768648..7085ed3 100644 --- a/nixos/hosts/hamac/default.nix +++ b/nixos/hosts/hamac/default.nix @@ -1,9 +1,14 @@ # channel="nixos" # See the configuration.nix(5) man page and the NixOS manual (accessible by running `nixos-help`). -{ config, pkgs, ... }: +let + sources = import ../../npins; + pkgs-unstable = import sources.nixpkgs-unstable {}; +in +{ config, lib, pkgs, ... }: { + _module.args = { inherit pkgs-unstable; }; imports = [ ./hardware-configuration.nix <top/profiles/workstation> |