tangled
alpha
login
or
join now
adjoly.fr
/
nixos-config
0
fork
atom
❄️ My personnal NixOS configuration
nix-flake
nixos-configuration
linux
dotfiles
flake
nix
nix-config
nixos
nixos-flake
linux-desktop
0
fork
atom
overview
issues
pulls
2
pipelines
「✨」 feat: changed to shell.nix
adjoly.fr
4 months ago
3167f6f2
80862e43
+12
-7
2 changed files
expand all
collapse all
unified
split
flake.nix
shell.nix
+2
-7
flake.nix
···
85
85
devShells = forEachSupportedSystem (
86
86
{ pkgs, ... }:
87
87
{
88
88
-
default = pkgs.mkShell {
89
89
-
packages = with pkgs; [
90
90
-
nixd
91
91
-
nixfmt-rfc-style
92
92
-
];
93
93
-
};
94
94
-
}
88
88
+
default = pkgs.callPackage ./shell.nix {};
89
89
+
}
95
90
);
96
91
packages = forEachSupportedSystem (
97
92
{ pkgs, system }:
+10
shell.nix
···
1
1
+
{
2
2
+
pkgs ? import <nixpkgs> { },
3
3
+
}:
4
4
+
5
5
+
pkgs.mkShell {
6
6
+
packages = with pkgs; [
7
7
+
nixd
8
8
+
nixfmt-rfc-style
9
9
+
];
10
10
+
}