nixos

NixOS server files. Mirror from https://git.nordgedanken.dev/kubernetes/nixos
git clone git://archive.git.mtrnord.blog/MTRNord/nixos.git
Log | Files | Refs | README

shell.nix (394B)


      1 # Shell for bootstrapping flake-enabled nix and home-manager
      2 # You can enter it through 'nix develop' or (legacy) 'nix-shell'
      3 {pkgs ? (import ./nixpkgs.nix) {}}: {
      4   default = pkgs.mkShell {
      5     # Enable experimental features without having to specify the argument
      6     NIX_CONFIG = "experimental-features = nix-command flakes";
      7     nativeBuildInputs = with pkgs; [nix home-manager git];
      8   };
      9 }