Remove flake-parts

This commit is contained in:
ItsDrike 2024-02-28 23:40:50 +01:00
parent f35c496905
commit 7f1b8b5d38
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
3 changed files with 10 additions and 43 deletions

View file

@ -1,11 +1,8 @@
{self, inputs, ...}: {
flake.nixosConfigurations = let
inherit (inputs.nixpkgs.lib) nixosSystem;
specialArgs = {inherit inputs self;};
in {
vboxnix = nixosSystem {
inherit specialArgs;
modules = [ ../system ./vbox_nix ];
};
{self, inputs, ...}: let
inherit (inputs.nixpkgs) lib;
in {
vboxnix = lib.nixosSystem {
system = "x86_64-linux";
modules = [ ../system ./vbox_nix ];
};
}