2023-06-18 22:52:24 +02:00
|
|
|
{
|
2024-04-04 01:41:19 +02:00
|
|
|
description = "Modular NixOS configuration.";
|
2023-06-18 22:52:24 +02:00
|
|
|
|
2024-04-04 01:41:19 +02:00
|
|
|
inputs = {
|
|
|
|
impermanence.url = "github:nix-community/impermanence";
|
|
|
|
};
|
2023-06-18 22:52:24 +02:00
|
|
|
|
2024-04-04 01:41:19 +02:00
|
|
|
outputs = { self, nixpkgs, impermanence, ... }:
|
|
|
|
{
|
|
|
|
nixosConfigurations.workstation = nixpkgs.lib.nixosSystem {
|
2023-07-19 22:25:34 +02:00
|
|
|
system = "x86_64-linux";
|
2024-04-04 01:41:19 +02:00
|
|
|
modules = [
|
|
|
|
impermanence.nixosModules.impermanence
|
|
|
|
./machines/workstation.nix
|
|
|
|
./users/hu.nix
|
|
|
|
];
|
|
|
|
};
|
2023-06-18 22:52:24 +02:00
|
|
|
};
|
|
|
|
}
|