diff --git a/infra/libkookie/configuration/base/default.nix b/infra/libkookie/configuration/base/default.nix index a71f54a00d2..55fe20c0b20 100644 --- a/infra/libkookie/configuration/base/default.nix +++ b/infra/libkookie/configuration/base/default.nix @@ -4,5 +4,5 @@ { config, lib, pkgs, ... }: { - imports = [ ./fish ./git ./shell ] + imports = [ ./fish ./git ./shell ]; } diff --git a/infra/libkookie/configuration/base/shell/default.nix b/infra/libkookie/configuration/base/shell/default.nix index 32a37330c3f..fd3ad477316 100644 --- a/infra/libkookie/configuration/base/shell/default.nix +++ b/infra/libkookie/configuration/base/shell/default.nix @@ -13,22 +13,20 @@ { pkgs, ... }: { - home-manager.users.spacekookie = { ... }: { - home.packages = with pkgs; [ - bat - curl - fzf - htop - kakoune # used to have a vim-type editor everywhere - moreutils - pciutils - pv - ripgrep - skim - tmux - tree - usbutils - wget - ]; - }; + home.packages = with pkgs; [ + bat + curl + fzf + htop + kakoune # used to have a vim-type editor everywhere + moreutils + pciutils + pv + ripgrep + skim + tmux + tree + usbutils + wget + ]; }