added aagl projects and enabled hsr

This commit is contained in:
Gabriella Bere 2024-09-13 16:44:28 +01:00
parent 41275655ae
commit 4b013738e1
2 changed files with 10 additions and 1 deletions

View file

@ -30,6 +30,10 @@
url = "github:nix-community/disko"; url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
aagl = {
url = "github.ezKEa/aagl-gtk-on-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
satisfactory-server = { satisfactory-server = {
url = "github:nekowinston/satisfactory-server-flake"; url = "github:nekowinston/satisfactory-server-flake";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -53,7 +57,9 @@
./modules/nh.nix ./modules/nh.nix
./modules/waydroid.nix ./modules/waydroid.nix
./modules/packages.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 # Imports home-manager module for use within nixos, not reccomended for use WITH standalone version
# inputs.home-manager.nixosModules.default # inputs.home-manager.nixosModules.default
]; ];

3
modules/aagl.nix Normal file
View file

@ -0,0 +1,3 @@
{config, ... }: {
programs.honkers-railway-launcher.enable = true;
}