mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 15:59:06 +02:00
16 lines
374 B
Nix
16 lines
374 B
Nix
{ inputs, ... }: {
|
|
flake.nixosConfigurations.computer-mo = inputs.nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = {
|
|
user = "mo";
|
|
pkgs-unstable = import inputs.nixpkgs-unstable {
|
|
system = "x86_64-linux";
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
modules = [
|
|
inputs.self.nixosModules.computer-mo
|
|
];
|
|
};
|
|
}
|