❄️ My personnal NixOS configuration
nix-flake nixos-configuration linux dotfiles flake nix nix-config nixos nixos-flake linux-desktop

「✨」 feat: changed to shell.nix

+12 -7
+2 -7
flake.nix
··· 85 85 devShells = forEachSupportedSystem ( 86 86 { pkgs, ... }: 87 87 { 88 - default = pkgs.mkShell { 89 - packages = with pkgs; [ 90 - nixd 91 - nixfmt-rfc-style 92 - ]; 93 - }; 94 - } 88 + default = pkgs.callPackage ./shell.nix {}; 89 + } 95 90 ); 96 91 packages = forEachSupportedSystem ( 97 92 { pkgs, system }:
+10
shell.nix
··· 1 + { 2 + pkgs ? import <nixpkgs> { }, 3 + }: 4 + 5 + pkgs.mkShell { 6 + packages = with pkgs; [ 7 + nixd 8 + nixfmt-rfc-style 9 + ]; 10 + }