module.nix: config -> settings

This commit is contained in:
2025-05-05 14:52:28 +02:00
parent a4d10ad0c7
commit 4a4f0e6947
3 changed files with 25 additions and 13 deletions

View File

@@ -5,14 +5,14 @@
outputs = { self, nixpkgs, flake-utils }: let
inherit (nixpkgs) lib;
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forAllSystems = f: lib.genAttrs systems (system: let
pkgs = nixpkgs.legacyPackages.${system};
in f system pkgs);
@@ -45,7 +45,7 @@
python = pkgs.python312;
};
});
# Note: using the module requires that you have applied the overlay first
nixosModules.default = import ./nix/module.nix;