mirror of
https://github.com/artagaz/nix-config.git
synced 2026-06-23 02:05:45 +07:00
7 lines
145 B
Nix
7 lines
145 B
Nix
|
|
{ inputs, self, ... }:
|
||
|
|
{
|
||
|
|
flake.nixosConfigurations.nixos = inputs.nixpkgs.lib.nixosSystem {
|
||
|
|
modules = [ self.nixosModules.laptop ];
|
||
|
|
};
|
||
|
|
}
|