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