This commit is contained in:
Geoffrey Frogeye 2024-03-21 23:23:22 +01:00
parent 35783ea086
commit f04f8160db
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
2 changed files with 48 additions and 23 deletions

View file

@ -21,7 +21,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:danth/stylix";
url = "github:danth/stylix/release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
};
nixvim = {
@ -43,7 +43,13 @@
overlays = [
nixgl.overlay
];
config.allowUnfree = true;
config = {
allowUnfree = true;
# TODO Not sure why, HM needs nixos-option which needs an old Nix?
permittedInsecurePackages = [
"nix-2.15.3"
];
};
};
lib = {
nixosSystem = { system, modules ? [ ] }: nixpkgs.lib.nixosSystem {