1
Fork 0
nixos-system-config/flake.nix

30 lines
649 B
Nix
Raw Normal View History

2023-06-18 22:52:24 +02:00
{
description = "Modular NixOS configuration.";
2023-06-18 22:52:24 +02:00
inputs = {
impermanence.url = "github:nix-community/impermanence";
2024-04-05 14:36:20 +02:00
home-manager = {
url = "github:nix-community/home-manager";
};
aagl = {
url = "github:ezKEa/aagl-gtk-on-nix";
};
};
2023-06-18 22:52:24 +02:00
2024-04-05 14:36:20 +02:00
outputs = { self, nixpkgs, impermanence, home-manager, aagl, ... }:
{
nixosConfigurations.workstation = nixpkgs.lib.nixosSystem {
2023-07-19 22:25:34 +02:00
system = "x86_64-linux";
modules = [
impermanence.nixosModules.impermanence
home-manager.nixosModules.home-manager
2024-04-05 14:36:20 +02:00
aagl.nixosModules.default
./machines/workstation.nix
./users/hu/user.nix
];
};
2023-06-18 22:52:24 +02:00
};
}