feat: add stretchly

This commit is contained in:
Infinidoge 2021-10-15 08:51:22 -04:00
parent 80cfc0a9f0
commit 59a28dfc4b
2 changed files with 7 additions and 0 deletions

View file

@ -19,6 +19,10 @@
wlp41s0.useDHCP = true; wlp41s0.useDHCP = true;
}; };
home-manager.users.infinidoge = { profiles, ... }: {
imports = with profiles; [ stretchly ];
};
# services.minecraft-servers = { # services.minecraft-servers = {
# enable = true; # enable = true;
# openFirewall = true; # openFirewall = true;

View file

@ -0,0 +1,3 @@
{ pkgs, ... }: {
home.packages = with pkgs; [ stretchly ];
}