41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
nur.url = "github:nix-community/NUR";
|
|
impermanence.url = "github:nix-community/impermanence";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
aagl = {
|
|
url = "github:ezKEa/aagl-gtk-on-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
ags.url = "github:Aylur/ags";
|
|
};
|
|
|
|
outputs = { nixpkgs, impermanence, home-manager, aagl, nur, ags, ... }:
|
|
{
|
|
nixosConfigurations.workstation = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
home-manager.nixosModules.home-manager {
|
|
home-manager.sharedModules = [
|
|
nur.hmModules.nur
|
|
ags.homeManagerModules.default
|
|
];
|
|
}
|
|
impermanence.nixosModules.impermanence
|
|
nur.nixosModules.nur
|
|
aagl.nixosModules.default
|
|
|
|
./machines/workstation/configuration.nix
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|