about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2023-09-14 17:10:00 +0200
committeraszlig <aszlig@nix.build>2023-09-14 17:21:19 +0200
commitafb1c4264fef9362b124979ac3690b0b03eb3901 (patch)
treeb999f353981c16b9680c2def49974487c7aac4b6 /modules
parent4690494feee20a62c4f0c67a5f7f175fdc6ad332 (diff)
profiles: Revert "Use Nix stable for nixos-option"
This reverts commit b9a7b3f0710ed828c9ec7562a6e641810fadd61b.

Our override is no longer needed and it actually doesn't build anymore
since even current stable Nix (2.17.0) is too new for nixos-option. This
is why in nixpkgs, there is a specific override for nixos-option which
uses Nix 2.15 instead.

For us this essentially means that we can drop the override, since
either someone fixes nixos-option to work with newer Nix versions or we
get a specific override that doesn't interfere with our (as in Vuizvui)
override of the "nix" attribute.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'modules')
-rw-r--r--modules/user/aszlig/profiles/base.nix8
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/user/aszlig/profiles/base.nix b/modules/user/aszlig/profiles/base.nix
index eb7a78f0..ff63c04f 100644
--- a/modules/user/aszlig/profiles/base.nix
+++ b/modules/user/aszlig/profiles/base.nix
@@ -94,14 +94,6 @@ in {
       w3m = super.w3m.override {
         graphicsSupport = true;
       };
-
-      # Doesn't build with latest Nix unstable and since I rarely use it, I
-      # don't mind if it's using an older Nix version.
-      nixos-option = super.nixos-option.override {
-        # Note: This is *super*, not *self* because self already has nix
-        # replaced by nixUnstable.
-        inherit (super) nix;
-      };
     }));
 
     system.fsPackages = with pkgs; [ sshfs-fuse ];