From d541499ed4f1289c81c34b32b750698c5c978235 Mon Sep 17 00:00:00 2001 From: Mx Kookie Date: Wed, 23 Dec 2020 13:42:33 +0100 Subject: [PATCH] libkookie: base: fix syntax errors --- .../libkookie/configuration/base/default.nix | 2 +- .../configuration/base/shell/default.nix | 34 +++++++++---------- 2 files changed, 17 insertions(+), 19 deletions(-) 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 + ]; }