fix: install additional packages

Installed the following packages:

- deno
- neovim from the unstable channel.
This commit is contained in:
Dan Anglin 2024-09-14 11:19:19 +01:00
parent 140e499429
commit 5ea3ff5c9e
Signed by: dananglin
GPG key ID: DC7C2989B0E30FEA

View file

@ -47,8 +47,14 @@
# Configure console keymap
console.keyMap = "uk";
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
nixpkgs = {
config = {
allowUnfree = true;
packageOverrides = pkgs: {
unstable = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") {};
};
};
};
# Enable sound with pipewire.
sound.enable = true;
@ -66,6 +72,7 @@
environment = {
systemPackages = with pkgs; [
curl
deno
distrobox
firefox
gcc
@ -167,8 +174,8 @@
description = "Dan Anglin";
extraGroups = [ "networkmanager" "wheel" "docker"];
packages = with pkgs; [
neovim
lf
unstable.neovim
];
};