eff6860aa2
The old configuration is still available in the legacy branch of this repository. It contains the mostly server oriented configuration while this new configuration is aimed at desktop usage.
19 lines
410 B
Nix
19 lines
410 B
Nix
{
|
|
description = "Modular NixOS configuration.";
|
|
|
|
inputs = {
|
|
impermanence.url = "github:nix-community/impermanence";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, impermanence, ... }:
|
|
{
|
|
nixosConfigurations.workstation = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
impermanence.nixosModules.impermanence
|
|
./machines/workstation.nix
|
|
./users/hu.nix
|
|
];
|
|
};
|
|
};
|
|
}
|