From 3df6d993ef8c6001afcebd4c228101738c407c40 Mon Sep 17 00:00:00 2001
From: Jens Nolte <git@queezle.net>
Date: Thu, 19 Aug 2021 02:24:37 +0200
Subject: [PATCH] Move nixUnstable to base layer

---
 layers/base.nix        | 5 +++++
 layers/workstation.nix | 5 -----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/layers/base.nix b/layers/base.nix
index 97b4824..b3d01e9 100644
--- a/layers/base.nix
+++ b/layers/base.nix
@@ -21,6 +21,11 @@ in
     ./ioschedulers.nix
   ];
 
+  nix.package = pkgs.nixUnstable;
+  nix.extraOptions = ''
+    experimental-features = nix-command flakes
+  '';
+
   # This value determines the NixOS release with which your system is to be
   # compatible, in order to avoid breaking some software such as database
   # servers. You should change this only after NixOS release notes say you
diff --git a/layers/workstation.nix b/layers/workstation.nix
index 4e63a3a..babe00c 100644
--- a/layers/workstation.nix
+++ b/layers/workstation.nix
@@ -6,11 +6,6 @@
     #./vscode.nix
   ];
 
-  nix.package = pkgs.nixUnstable;
-  nix.extraOptions = ''
-    experimental-features = nix-command flakes
-  '';
-
   documentation.dev.enable = true;
 
   environment.systemPackages = with pkgs; [
-- 
GitLab