Add unstable channel and jq
This commit is contained in:
@@ -10,9 +10,9 @@
|
||||
environment.systemPackages = with pkgs; [
|
||||
chromium
|
||||
gnumake
|
||||
git
|
||||
jetbrains-toolbox
|
||||
fastfetch
|
||||
jq
|
||||
];
|
||||
|
||||
security.rtkit.enable = true;
|
||||
|
||||
@@ -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
7
systems/modules/jq.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, pkgs, ... } :
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
jq
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user