Flake update, use goland and rust from stable, add kdenlive for fenix@fenixpc

This commit is contained in:
2025-10-14 18:02:42 +03:00
parent 9b71a9e223
commit 9d8a66facd
4 changed files with 46 additions and 17 deletions

View File

@@ -4,6 +4,7 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-25.05";
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
@@ -30,6 +31,7 @@
self,
nixpkgs,
nixpkgs-stable,
nixpkgs-master,
...
}@inputs:
let
@@ -57,6 +59,12 @@
inherit system;
config.allowUnfree = true;
};
pkgsMasterSettings =
system:
import nixpkgs-master {
inherit system;
config.allowUnfree = true;
};
hosts = import ./hosts.nix;
hostNames = builtins.attrNames hosts;
@@ -82,6 +90,7 @@
extraSpecialArgs = {
inherit inputs;
pkgsStable = pkgsStableSettings pkgs.system;
pkgsMaster = pkgsMasterSettings pkgs.system;
hosts = hosts;
};
};
@@ -107,6 +116,7 @@
specialArgs = {
inherit inputs;
pkgsStable = pkgsStableSettings host.system;
pkgsMaster = pkgsMasterSettings host.system;
hosts = hosts;
quirks = (quirks: (import ./quirks { inherit quirks; }));
};