Add unstable channel and jq

This commit is contained in:
Armel van Ravels
2026-04-23 16:07:04 +02:00
parent deed82f96b
commit b1a13b64f7
7 changed files with 58 additions and 7 deletions

View File

@@ -10,9 +10,9 @@
environment.systemPackages = with pkgs; [
chromium
gnumake
git
jetbrains-toolbox
fastfetch
jq
];
security.rtkit.enable = true;

View File

@@ -1,9 +1,12 @@
{ pkgs, ... }:
{ pkgs, pkgsUnstable, ... }:
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
inherit pkgsUnstable;
};
users.avravels = import home/home.nix;
};

7
systems/modules/jq.nix Normal file
View File

@@ -0,0 +1,7 @@
{ config, pkgs, ... } :
{
environment.systemPackages = with pkgs; [
jq
];
}