more changes, all should work pretty nicely now

This commit is contained in:
2025-05-21 15:45:30 +02:00
parent 0e34591f0a
commit ab93aae1b6
56 changed files with 6674 additions and 229 deletions
-9
View File
@@ -1,9 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ blueman ];
services = {
mpris-proxy.enable = true;
blueman-applet.enable = true;
};
}
-47
View File
@@ -1,47 +0,0 @@
{
config,
inputs,
lib,
pkgs,
osConfig,
...
}:
{
home.packages = with pkgs; [
hyprpicker
hyprlock
hypridle
hyprpaper
hyprland-protocols
inputs.hyprsunset
# inputs.hyprsysteminfo
# hyprpolkit -- not in nixpkgs yet
];
imports = [
./waybar.nix
];
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
xwayland.enable = true;
systemd.enable = true;
# Tell home-manager not to manage the config file
extraConfig = "";
};
lib.inputMethod.fcitx5.waylandFrontend = true;
programs = {
hyprlock.enable = true;
};
services = {
hyprpaper.enable = true;
hypridle.enable = true;
};
}