diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-09-04 17:02:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-04 17:02:01 +0200 |
commit | e9ecdd05b915456cb0292acdb7d7ddfc00338171 (patch) | |
tree | 2e30b5de8cc6a3e44d8865cef19639950e0ae53e /flake.nix | |
parent | ad6f15f293470426f931123fdbd4faecea4b8d50 (diff) | |
parent | 2918d61b16934980ed43fa52ead291e37a66732c (diff) | |
download | PrismLauncher-e9ecdd05b915456cb0292acdb7d7ddfc00338171.tar.gz PrismLauncher-e9ecdd05b915456cb0292acdb7d7ddfc00338171.tar.bz2 PrismLauncher-e9ecdd05b915456cb0292acdb7d7ddfc00338171.zip |
Merge pull request #1574 from Scrumplex/refactor-flake
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -23,5 +23,19 @@ outputs = inputs: inputs.flake-parts.lib.mkFlake {inherit inputs;} - {imports = [./nix];}; + { + imports = [ + inputs.pre-commit-hooks.flakeModule + + ./nix/dev.nix + ./nix/distribution.nix + ]; + + systems = [ + "x86_64-linux" + "aarch64-linux" + "x86_64-darwin" + "aarch64-darwin" + ]; + }; } |