tangled
alpha
login
or
join now
pluie.me
/
flake
2
fork
atom
All my system configs and packages in one repo
2
fork
atom
overview
issues
pulls
pipelines
flake: use the power of recursion
pluie.me
2 months ago
f6c12393
730f85cf
verified
This commit was signed with the committer's
known signature
.
pluie.me
SSH Key Fingerprint:
SHA256:YtI1D7vlcZ4obaiJ4tQihtswcMhHKdfYZuc4whOX2y8=
+8
-5
1 changed file
expand all
collapse all
unified
split
flake.nix
+8
-5
flake.nix
···
116
116
};
117
117
118
118
perSystem =
119
119
-
{ system, ... }:
120
120
-
let
119
119
+
{
120
120
+
pkgs,
121
121
+
system,
122
122
+
...
123
123
+
}:
124
124
+
{
121
125
# Allow Flake checks to pass
122
122
-
pkgs = import inputs.nixpkgs {
126
126
+
_module.args.pkgs = import inputs.nixpkgs {
123
127
inherit system;
124
128
config.allowUnfree = true;
125
129
};
126
126
-
in
127
127
-
{
130
130
+
128
131
packages = packages' pkgs;
129
132
130
133
devShells.default = pkgs.mkShellNoCC {