From 31a67135ea377f30b99fcb14bacda4d31b00ba62 Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Tue, 17 Oct 2023 23:14:45 +0200 Subject: [PATCH] Remove alacritty fake --- nixos/modules-old/apps/alacritty/default.nix | 15 --------------- nixos/modules-old/apps/default.nix | 19 ------------------- 2 files changed, 34 deletions(-) delete mode 100644 nixos/modules-old/apps/alacritty/default.nix diff --git a/nixos/modules-old/apps/alacritty/default.nix b/nixos/modules-old/apps/alacritty/default.nix deleted file mode 100644 index dad5f42..0000000 --- a/nixos/modules-old/apps/alacritty/default.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ inputs, lib, config, pkgs, ... }: - -{ - home-manager.users.tdpeuter = { pkgs, ... }: { - home = { - packages = with pkgs; [ - alacritty - ]; - - file = { - ".config/alacritty".source = ../../../../stow/alacritty/.config/alacritty; - }; - }; - }; -} diff --git a/nixos/modules-old/apps/default.nix b/nixos/modules-old/apps/default.nix index c5ad367..4ad4b18 100644 --- a/nixos/modules-old/apps/default.nix +++ b/nixos/modules-old/apps/default.nix @@ -1,28 +1,9 @@ { imports = [ - ./alacritty ./firefox ./kitty ./steam ./thunderbird # ./virtualbox ]; - - home-manager.users.tdpeuter = { pkgs, ... }: { - home.packages = with pkgs; [ - brave - caprine-bin - discord - jellyfin-media-player - libreoffice-fresh - mattermost-desktop - nextcloud-client - obsidian - pinentry_qt - qalculate-gtk - spotify - zathura - zoom-us - ]; - }; }