mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 16:43:05 +02:00
25 lines
585 B
Nix
25 lines
585 B
Nix
{
|
|
description = "NixOS proof-of-concept for linux_configuration parity";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { nixpkgs, home-manager, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
in {
|
|
nixosConfigurations.arch-parity-poc = nixpkgs.lib.nixosSystem {
|
|
inherit system;
|
|
modules = [
|
|
home-manager.nixosModules.home-manager
|
|
./configuration.nix
|
|
];
|
|
};
|
|
};
|
|
}
|