fixed ssh

This commit is contained in:
Emile Clark-Boman 2025-02-21 18:48:51 +10:00
parent 64d5097f1a
commit d178606f7d
9 changed files with 380 additions and 9 deletions

View file

@ -1,12 +1,12 @@
{
# NOTE: hyprland must be enabled in BOTH your host config (for running hyprland)
# and your home-manager config (for managing hyprland's config files)
{
pkgs,
inputs,
config,
lib,
...
}:
{
lib,
...
}: {
options.hyprland = {
enable = lib.mkEnableOption "Hyprland";
};
@ -17,7 +17,7 @@
#package = inputs.hyprland.packages.${pkgs.system}.hyprland;
xwayland.enable = true;
};
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
@ -26,5 +26,5 @@
};
# TODO: finish this (I didn't like the dotfiles I was getting inspo from and stopped)
};
};
}