aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorAdrian Kummerlaender2025-12-12 13:11:38 +0100
committerAdrian Kummerlaender2025-12-12 13:11:38 +0100
commit07f77a6ba05e5fc4b72ca47a43acc4ed0e2d4495 (patch)
treea8cc3b2b715dbdc73900a1b1b70880684331aa2d /flake.nix
parentef560bb1d546766e64b666b16377c3b06d4c1ce1 (diff)
downloadnixos_home-07f77a6ba05e5fc4b72ca47a43acc4ed0e2d4495.tar
nixos_home-07f77a6ba05e5fc4b72ca47a43acc4ed0e2d4495.tar.gz
nixos_home-07f77a6ba05e5fc4b72ca47a43acc4ed0e2d4495.tar.bz2
nixos_home-07f77a6ba05e5fc4b72ca47a43acc4ed0e2d4495.tar.lz
nixos_home-07f77a6ba05e5fc4b72ca47a43acc4ed0e2d4495.tar.xz
nixos_home-07f77a6ba05e5fc4b72ca47a43acc4ed0e2d4495.tar.zst
nixos_home-07f77a6ba05e5fc4b72ca47a43acc4ed0e2d4495.zip
Update to 25.11, manually pull in deprecated stuff for emacswayland
I do not understand why helm-ag and helm-sweep were removed in MELPA… They work perfectly fine.
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix
index 479f8c9..b87429e 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,18 +2,19 @@
description = "Computing environment of Adrian Kummerlaender";
inputs = {
- stable.url = github:NixOS/nixpkgs/nixos-25.05;
+ stable.url = github:NixOS/nixpkgs/nixos-25.11;
unstable.url = github:NixOS/nixpkgs/nixpkgs-unstable;
+ oldstable.url = github:NixOS/nixpkgs/nixos-25.05;
personal.url = github:KnairdA/pkgs;
home-manager = {
- url = github:nix-community/home-manager/release-25.05;
+ url = github:nix-community/home-manager/release-25.11;
inputs = { nixpkgs.follows = "stable"; };
};
emacs.url = github:nix-community/emacs-overlay/master;
};
outputs = {
- self, stable, unstable, personal, emacs, home-manager, ...
+ self, stable, unstable, oldstable, personal, emacs, home-manager, ...
}: let
system = "x86_64-linux";
@@ -28,6 +29,11 @@
config = { allowUnfree = true; };
};
+ pkgs-oldstable = import oldstable {
+ inherit system;
+ config = { allowUnfree = true; };
+ };
+
pkgs-personal = personal;
config = hostname: home-manager.lib.homeManagerConfiguration {
@@ -35,6 +41,7 @@
extraSpecialArgs = {
inherit pkgs-unstable;
+ inherit pkgs-oldstable;
inherit pkgs-personal;
inherit hostname;
};