feat: use stable nixos-24.11 branch, configure target systems

This commit is contained in:
2025-03-04 23:00:13 +02:00
parent 9eb69a64e5
commit c8f9ca462a
2 changed files with 25 additions and 8 deletions

26
kickstart/flake.lock generated
View File

@@ -17,16 +17,16 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1741037377, "lastModified": 1740932899,
"narHash": "sha256-SvtvVKHaUX4Owb+PasySwZsoc5VUeTf1px34BByiOxw=", "narHash": "sha256-F0qDu2egq18M3edJwEOAE+D+VQ+yESK6YWPRQBfOqq8=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "02032da4af073d0f6110540c8677f16d4be0117f", "rev": "1546c45c538633ae40b93e2d14e0bb6fd8f13347",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixpkgs-unstable", "ref": "nixos-24.11",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
@@ -34,7 +34,23 @@
"root": { "root": {
"inputs": { "inputs": {
"nixCats": "nixCats", "nixCats": "nixCats",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"systems": "systems"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
} }
} }
}, },

View File

@@ -21,8 +21,9 @@
description = "A Lua-natic's neovim flake, with extra cats! nixCats!"; description = "A Lua-natic's neovim flake, with extra cats! nixCats!";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
nixCats.url = "github:BirdeeHub/nixCats-nvim"; nixCats.url = "github:BirdeeHub/nixCats-nvim";
systems.url = "github:nix-systems/default";
# neovim-nightly-overlay = { # neovim-nightly-overlay = {
# url = "github:nix-community/neovim-nightly-overlay"; # url = "github:nix-community/neovim-nightly-overlay";
@@ -41,10 +42,10 @@
}; };
# see :help nixCats.flake.outputs # see :help nixCats.flake.outputs
outputs = { self, nixpkgs, nixCats, ... }@inputs: let outputs = { self, nixpkgs, nixCats, systems, ... }@inputs: let
inherit (nixCats) utils; inherit (nixCats) utils;
luaPath = "${./.}"; luaPath = "${./.}";
forEachSystem = utils.eachSystem nixpkgs.lib.platforms.all; forEachSystem = utils.eachSystem (import systems);
# the following extra_pkg_config contains any values # the following extra_pkg_config contains any values
# which you want to pass to the config set of nixpkgs # which you want to pass to the config set of nixpkgs
# import nixpkgs { config = extra_pkg_config; inherit system; } # import nixpkgs { config = extra_pkg_config; inherit system; }