summaryrefslogtreecommitdiff
path: root/nixos/hosts/hamac/default.nix
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-02-24 20:18:14 +0100
committerMartin Fischer <martin@push-f.com>2025-02-24 20:18:14 +0100
commitf530d6ad41747af5f8bb05b337b278cddbac76d9 (patch)
tree2cca1d67a163e0d02b092ff51f6cee3d31e4214f /nixos/hosts/hamac/default.nix
parent3ccacbcf32c30677db8a2729c9e553431fd3b732 (diff)
tweak(workstation): use Zed from unstable
Diffstat (limited to 'nixos/hosts/hamac/default.nix')
-rw-r--r--nixos/hosts/hamac/default.nix7
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>