This commit is contained in:
Chris Kruining 2025-03-28 22:09:57 +01:00
parent 816b85e06e
commit bc00deb3e1
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
9 changed files with 9 additions and 9 deletions

View file

@ -12,7 +12,7 @@ in
config = mkIf cfg.enable {
home-manager.users.${user} = {
packages = with pkgs; [ btop ];
home.packages = with pkgs; [ btop ];
programs.btop = {
enable = true;

View file

@ -13,7 +13,7 @@ in
config = mkIf cfg.enable {
home-manager.users.${user} = {
packages = with pkgs; [ eza ];
home.packages = with pkgs; [ eza ];
programs.eza = {
enable = true;

View file

@ -11,7 +11,7 @@ in
config = mkIf config.modules.${user}.shell.toolset.fzf.enable {
home-manager.users.${user} = {
packages = with pkgs; [ fzf ];
home.packages = with pkgs; [ fzf ];
programs.fzf = {
enable = true;

View file

@ -13,7 +13,7 @@ in
environment.sessionVariables.GITHUB_TOKEN = "$(cat /run/agenix/tokenGH)";
home-manager.users.${user} = {
home.packages = attrValues {
home.home.packages = attrValues {
inherit (pkgs) git act dura lazygit;
inherit (pkgs.gitAndTools) gh git-open git-crypt;
};

View file

@ -10,7 +10,7 @@ in
config = mkIf config.modules.${user}.shell.toolset.starship.enable {
home-manager.users.${user} = {
packages = with pkgs; [ starship ];
home.packages = with pkgs; [ starship ];
programs.starship = {
enable = true;

View file

@ -9,7 +9,7 @@ in
config = mkIf config.modules.${user}.shell.toolset.tmux.enable {
home-manager.users.${user} = {
packages = with pkgs; [ tmux ];
home.packages = with pkgs; [ tmux ];
programs.tmux = {
enable = true;

View file

@ -12,7 +12,7 @@ in
config = mkIf cfg.enable {
home-manager.users.${user} = {
packages = with pkgs; [ yazi ];
home.packages = with pkgs; [ yazi ];
programs.yazi = {
enable = true;

View file

@ -12,7 +12,7 @@ in
config = mkIf cfg.enable {
home-manager.users.${user} = {
packages = with pkgs; [ zoxide ];
home.packages = with pkgs; [ zoxide ];
programs.zoxide = {
enable = true;

View file

@ -1,4 +1,4 @@
{ config, options, pkgs, lib, user, ... }:
{ config, lib, pkgs, user, ... }:
let
inherit (lib.attrsets) mapAttrsToList;
inherit (lib.modules) mkIf;