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 ]; +}