feat: add dependencies to host in home-manager

This commit is contained in:
2025-04-13 18:22:04 +03:00
parent 28bf565203
commit 9cdd54c6e8
10 changed files with 38 additions and 14 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, pkgs-fixed, ... }: {
{ pkgs, pkgs-fixed, host, ... }: {
disabledModules = [ ../../modules/user/packages/coding.nix ];
home.packages = with pkgs; [
nautilus
@ -7,4 +7,5 @@
python3
pkgs-fixed.jetbrains.pycharm-community
];
programs.hyprlock.enable = host.laptop;
}