fix: fix customVim overlay in NixOS

This commit is contained in:
Oliver Davies 2023-04-05 18:00:00 +01:00
parent d66f5362cb
commit 601f6b3373
3 changed files with 13 additions and 11 deletions
system/nixos/nixedo

View file

@ -4,7 +4,12 @@
{ config, pkgs, ... }:
let
nixpkgs = import ../../shared/nixpkgs.nix { };
in
{
nixpkgs = nixpkgs;
imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix
];
@ -93,9 +98,6 @@
packages = with pkgs; [ firefox ];
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs;