mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 07:00:41 +00:00
Remove flake-parts
This commit is contained in:
parent
f35c496905
commit
7f1b8b5d38
3 changed files with 10 additions and 43 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue