mirror of
https://codeberg.org/ultra/nixos-dotfiles.git
synced 2024-11-05 00:33:09 +02:00
4f001d4ba0
Signed-off-by: Alex Stan <stan.alexandru@ichb.ro>
14 lines
316 B
Nix
14 lines
316 B
Nix
{
|
|
description = "My NixOS system configuration";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
nixosConfigurations.ultrapc = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./ultrapc/configuration.nix
|
|
];
|
|
};
|
|
};
|
|
}
|