Updated flake

This commit is contained in:
EsVagy42 2026-03-03 20:59:38 +01:00
parent 15b9f2c8df
commit 5d577f2470
4 changed files with 14 additions and 38 deletions

View file

@ -3,7 +3,6 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs-old.url = "github:nixos/nixpkgs/0182a361324364ae3f436a63005877674cf45efb";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
@ -23,7 +22,6 @@
{
self,
nixpkgs,
nixpkgs-old,
home-manager,
plasma-manager,
nixvim,
@ -53,24 +51,20 @@
}
];
specialArgs = {
pkgs-old = import nixpkgs-old {
inherit system;
config.allowUnfree = false;
};
};
in
{
nixosConfigurations = {
nixos = lib.nixosSystem {
inherit system;
inherit specialArgs;
inherit specialArgs;
modules = baseModules ++ [
./devices/default/default.nix
];
};
live = lib.nixosSystem {
inherit system;
inherit specialArgs;
inherit specialArgs;
modules = baseModules ++ [
(nixpkgs + "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
{