hoe manager

This commit is contained in:
martyTF 2025-12-17 15:51:20 +01:00
parent bfbc64b611
commit f266f8a8ee
14 changed files with 154 additions and 29 deletions

View file

@ -1,30 +0,0 @@
{
config,
lib,
pkgs,
...
}:
let
enable_hyprland =
if config.networking.hostName == "marty-pc" then
true
else if config.networking.hostName == "marty-latitude" then
true
else if config.networking.hostName == "marty-server" then
false
else
false;
in
{
programs = {
hyprland = {
enable = enable_hyprland;
xwayland.enable = enable_hyprland;
};
hyprlock = {
enable = enable_hyprland;
};
};
}