system: Update

This commit is contained in:
2025-01-26 15:02:48 +03:00
parent 41cf1a5894
commit 879ea3474a
6 changed files with 276 additions and 104 deletions

View File

@ -45,9 +45,9 @@
in {
nixosConfigurations = {
Rias = nixpkgs.lib.nixosSystem {
Rias = nixpkgs-stable.lib.nixosSystem {
specialArgs = {
pkgs-stable = import nixpkgs-stable {
pkgs-unstable = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
@ -59,9 +59,9 @@
];
};
Senko = nixpkgs.lib.nixosSystem {
Senko = nixpkgs-stable.lib.nixosSystem {
specialArgs = {
pkgs-stable = import nixpkgs-stable {
pkgs-unstable = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
@ -73,9 +73,9 @@
];
};
Eclipse = nixpkgs.lib.nixosSystem {
Eclipse = nixpkgs-stable.lib.nixosSystem {
specialArgs = {
pkgs-stable = import nixpkgs-stable {
pkgs-unstable = import nixpkgs {
inherit system;
config.allowUnfree = true;
};