[flake] Move MCP back to 24.11 for stability. Probably move the rest soon too.
This commit is contained in:
25
flake.nix
25
flake.nix
@@ -2,16 +2,19 @@
|
||||
description = "System Configuration";
|
||||
|
||||
inputs = {
|
||||
nixpkgs = {
|
||||
nixpkgs-unstable = {
|
||||
url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
};
|
||||
nixpkgs-stable = {
|
||||
url = "github:nixos/nixpkgs?ref=nixos-24.11";
|
||||
};
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/master";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
};
|
||||
hyprland = {
|
||||
url = "github:hyprwm/Hyprland";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
};
|
||||
hy3 = {
|
||||
url = "github:outfoxxed/hy3";
|
||||
@@ -21,13 +24,9 @@
|
||||
url = "github:Duckonaut/split-monitor-workspaces";
|
||||
inputs.hyprland.follows = "hyprland";
|
||||
};
|
||||
nix-darwin = {
|
||||
url = "github:LnL7/nix-darwin/master";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
sops-nix = {
|
||||
url = "github:Mic92/sops-nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.nixpkgs.follows = "nixpkgs-stable";
|
||||
};
|
||||
};
|
||||
|
||||
@@ -38,23 +37,19 @@
|
||||
altair = (import ./system/hosts/altair) {
|
||||
inherit inputs;
|
||||
inherit self;
|
||||
inherit nixpkgs;
|
||||
nixpkgs = inputs.nixpkgs-unstable;
|
||||
};
|
||||
mcp = (import ./system/hosts/mcp) {
|
||||
inherit inputs;
|
||||
inherit self;
|
||||
inherit nixpkgs;
|
||||
nixpkgs = inputs.nixpkgs-stable;
|
||||
};
|
||||
vega = (import ./system/hosts/vega) {
|
||||
inherit inputs;
|
||||
inherit self;
|
||||
inherit nixpkgs;
|
||||
nixpkgs = inputs.nixpkgs-unstable;
|
||||
};
|
||||
};
|
||||
darwinConfigurations = {
|
||||
# Removed. See 133a3f82073f03e62cb3e7902c85fb3fc6292fe2 for when the
|
||||
# last one was removed.
|
||||
};
|
||||
features = {
|
||||
development = (import ./home-manager/features/development/development.nix);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user