aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-09-04 17:02:01 +0200
committerGitHub <noreply@github.com>2023-09-04 17:02:01 +0200
commite9ecdd05b915456cb0292acdb7d7ddfc00338171 (patch)
tree2e30b5de8cc6a3e44d8865cef19639950e0ae53e /flake.nix
parentad6f15f293470426f931123fdbd4faecea4b8d50 (diff)
parent2918d61b16934980ed43fa52ead291e37a66732c (diff)
downloadPrismLauncher-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.nix16
1 files changed, 15 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index c3148fe0..d45282aa 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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"
+ ];
+ };
}