From a7b42d45f753d80126eae9d3f2e41d9011e142a0 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 13 Sep 2023 16:59:28 -0400 Subject: [PATCH] flake: completely remove stretchly --- hosts/Infini-DESKTOP/default.nix | 3 +-- ideas.md | 1 - readme.md | 2 -- users/profiles/stretchly.nix | 6 ------ 4 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 users/profiles/stretchly.nix diff --git a/hosts/Infini-DESKTOP/default.nix b/hosts/Infini-DESKTOP/default.nix index 8239651..9b3c19b 100644 --- a/hosts/Infini-DESKTOP/default.nix +++ b/hosts/Infini-DESKTOP/default.nix @@ -68,8 +68,7 @@ software.minipro.enable = true; }; - home = { profiles, pkgs, ... }: { - imports = with profiles; [ stretchly ]; + home = { pkgs, ... }: { home.packages = with pkgs; [ arduino hydrus diff --git a/ideas.md b/ideas.md index 6e860a5..f12ccb4 100644 --- a/ideas.md +++ b/ideas.md @@ -4,7 +4,6 @@ - Setup IRC (Possibly with ZNC) - Add Speedcrunch configuration - Add Polychromatic -- Reimplement Stretchly - Add a rofi menu for running commands (Plus modifier key to open in shell) - Declarative partition creation - [Disko](https://github.com/nix-community/disko) could be used diff --git a/readme.md b/readme.md index 0977da5..9c791f0 100644 --- a/readme.md +++ b/readme.md @@ -166,7 +166,6 @@ Most of the modules are self-explanatory from their names. - `rofi.nix` - `ssh.nix` - `starship.nix` -- `stretchly.nix` - `theming.nix` - `tmux.nix` - `vim.nix` @@ -199,4 +198,3 @@ My setup is pretty extensive, but reading it isn't too particularly difficult. - `doom`: My Doom Emacs configuration. Doom Emacs is my editor and home, and I use it extensively. - `qtile`: My Qtile configuration. Qtile is my home of homes, the environment I am pretty literally always in while on my computers. - `bluegon`: Changes screen color temperature for the benefit of my eyes. Pretty sure my setup is currently broken. - - `stretchly.json`: Configuration for stretchly, which is supposed to remind me to stretch. Not currently in use diff --git a/users/profiles/stretchly.nix b/users/profiles/stretchly.nix deleted file mode 100644 index fcdb08a..0000000 --- a/users/profiles/stretchly.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ config, pkgs, ... }: { - home.packages = with pkgs; [ stretchly ]; - - xdg.configFile."Stretchly/config.json".source = - ./../infinidoge/config/stretchly.json; -}