This commit is contained in:
caem 2024-04-05 14:36:20 +02:00
parent 59842a4ba4
commit 97c86fb014
No known key found for this signature in database
GPG key ID: F4F7229F8B860E9F
8 changed files with 122 additions and 7 deletions

View file

@ -3,16 +3,24 @@
inputs = {
impermanence.url = "github:nix-community/impermanence";
home-manager.url = "github:nix-community/home-manager";
home-manager = {
url = "github:nix-community/home-manager";
};
aagl = {
url = "github:ezKEa/aagl-gtk-on-nix";
};
};
outputs = { self, nixpkgs, impermanence, home-manager, ... }:
outputs = { self, nixpkgs, impermanence, home-manager, aagl, ... }:
{
nixosConfigurations.workstation = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
impermanence.nixosModules.impermanence
home-manager.nixosModules.home-manager
aagl.nixosModules.default
./machines/workstation.nix
./users/hu/user.nix
];