~vonfry/dotfiles

3a0f8358a6ccd82814a85cba669d9dd422b7ce68 — Vonfry 3 months ago 7793561
remove system flake setting because it is set automatically in nixpkgs
1 files changed, 1 insertions(+), 6 deletions(-)

M etc/nixos/flake.nix
M etc/nixos/flake.nix => etc/nixos/flake.nix +1 -6
@@ 16,11 16,6 @@
        ];
        nix = {
          package = pkgs.nixFlakes;
          registry = {
            sys.flake = nixpkgs;
            nixpkgs.flake = nixpkgs;
            nixos.flake = nixpkgs;
          };
          channel.enable = false;
          nixPath = [ "nixos-config=${./.}" "nixpkgs=${nixpkgs}" ];
          extraOptions = ''


@@ 33,7 28,7 @@
      flakeOutputs = flake-utils.lib.eachDefaultSystem (system:
        let
          pkgs = nixpkgs.legacyPackages.${system};
          ghcWith = pkgs.ghc.withPackages (p: with p; [ p.nvfetcher ]);
          ghcWith = pkgs.ghc.withPackages (p: [ p.nvfetcher ]);
        in {
          devShell = pkgs.mkShell { packages = [ ghcWith pkgs.nvchecker ]; };
        });