reflopactor

This commit is contained in:
NotAShelf 2023-04-25 23:09:03 +03:00
commit 8f372cde30
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
16 changed files with 140 additions and 283 deletions

View file

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