mirror of
https://github.com/MichaelFisher1997/nixos.git
synced 2025-06-15 12:03:11 +00:00
18 lines
353 B
Nix
18 lines
353 B
Nix
{
|
|
description = "NixOS configuration for hypr-nix";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
|
nixosConfigurations.hypr-nix = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./hosts/hypr-nix/configuration.nix
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|