system: update

This commit is contained in:
2025-03-30 22:22:46 +03:00
parent 8c39e606e3
commit 2d322ab1f2
13 changed files with 114 additions and 80 deletions

View File

@ -1,10 +1,10 @@
{ pkgs, pkgs-stable, ... }: {
{ pkgs, pkgs-fixed, ... }: {
disabledModules = [ ../../modules/user/packages/coding.nix ];
home.packages = with pkgs; [
nautilus
burpsuite
exiftool
python3
pkgs-stable.jetbrains.pycharm-community
pkgs-fixed.jetbrains.pycharm-community
];
}

View File

@ -1,4 +1,4 @@
{ pkgs, pkgs-stable, lib, inputs, name, fullname ? name, ... }: {
{ pkgs, pkgs-stable, pkgs-fixed, lib, inputs, name, fullname ? name, ... }: {
imports = [
inputs.home-manager.nixosModules.home-manager {
home-manager = {
@ -26,6 +26,7 @@
extraSpecialArgs = {
inherit inputs;
inherit pkgs-stable;
inherit pkgs-fixed;
};
};
}