diff --git a/flake.nix b/flake.nix index c6d3793..74c3a15 100644 --- a/flake.nix +++ b/flake.nix @@ -30,6 +30,10 @@ url = "github:nix-community/disko"; inputs.nixpkgs.follows = "nixpkgs"; }; + aagl = { + url = "github.ezKEa/aagl-gtk-on-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; satisfactory-server = { url = "github:nekowinston/satisfactory-server-flake"; inputs.nixpkgs.follows = "nixpkgs"; @@ -53,7 +57,9 @@ ./modules/nh.nix ./modules/waydroid.nix ./modules/packages.nix - + ./modules/aagl.nix + inputs.aagl.nixosModules.default + { nix.settings = aagl.nixConfig; } # Setup cachix for aagl projects # Imports home-manager module for use within nixos, not reccomended for use WITH standalone version # inputs.home-manager.nixosModules.default ]; diff --git a/modules/aagl.nix b/modules/aagl.nix new file mode 100644 index 0000000..6e10788 --- /dev/null +++ b/modules/aagl.nix @@ -0,0 +1,3 @@ +{config, ... }: { + programs.honkers-railway-launcher.enable = true; +}