flake: completely remove stretchly

This commit is contained in:
Infinidoge 2023-09-13 16:59:28 -04:00
parent 674dcda2e2
commit a7b42d45f7
4 changed files with 1 additions and 11 deletions

View file

@ -68,8 +68,7 @@
software.minipro.enable = true; software.minipro.enable = true;
}; };
home = { profiles, pkgs, ... }: { home = { pkgs, ... }: {
imports = with profiles; [ stretchly ];
home.packages = with pkgs; [ home.packages = with pkgs; [
arduino arduino
hydrus hydrus

View file

@ -4,7 +4,6 @@
- Setup IRC (Possibly with ZNC) - Setup IRC (Possibly with ZNC)
- Add Speedcrunch configuration - Add Speedcrunch configuration
- Add Polychromatic - Add Polychromatic
- Reimplement Stretchly
- Add a rofi menu for running commands (Plus modifier key to open in shell) - Add a rofi menu for running commands (Plus modifier key to open in shell)
- Declarative partition creation - Declarative partition creation
- [Disko](https://github.com/nix-community/disko) could be used - [Disko](https://github.com/nix-community/disko) could be used

View file

@ -166,7 +166,6 @@ Most of the modules are self-explanatory from their names.
- `rofi.nix` - `rofi.nix`
- `ssh.nix` - `ssh.nix`
- `starship.nix` - `starship.nix`
- `stretchly.nix`
- `theming.nix` - `theming.nix`
- `tmux.nix` - `tmux.nix`
- `vim.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. - `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. - `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. - `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

View file

@ -1,6 +0,0 @@
{ config, pkgs, ... }: {
home.packages = with pkgs; [ stretchly ];
xdg.configFile."Stretchly/config.json".source =
./../infinidoge/config/stretchly.json;
}