From 59a28dfc4b577583c6233faedc8cd910c2cd74bf Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Fri, 15 Oct 2021 08:51:22 -0400 Subject: [PATCH] feat: add stretchly --- hosts/Infini-DESKTOP/default.nix | 4 ++++ users/profiles/stretchly.nix | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 users/profiles/stretchly.nix diff --git a/hosts/Infini-DESKTOP/default.nix b/hosts/Infini-DESKTOP/default.nix index e93ede8..9b17cc7 100644 --- a/hosts/Infini-DESKTOP/default.nix +++ b/hosts/Infini-DESKTOP/default.nix @@ -19,6 +19,10 @@ wlp41s0.useDHCP = true; }; + home-manager.users.infinidoge = { profiles, ... }: { + imports = with profiles; [ stretchly ]; + }; + # services.minecraft-servers = { # enable = true; # openFirewall = true; diff --git a/users/profiles/stretchly.nix b/users/profiles/stretchly.nix new file mode 100644 index 0000000..59fd0d2 --- /dev/null +++ b/users/profiles/stretchly.nix @@ -0,0 +1,3 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ stretchly ]; +}