mv mako to hyprland
All checks were successful
nixos config pipeline / show-flake (push) Successful in 28s
nixos config pipeline / deploy (push) Successful in 42s

This commit is contained in:
smayzy 2026-01-17 15:46:37 +01:00
parent 00fa7a3c36
commit 33ef812e07
5 changed files with 2 additions and 32 deletions

View File

@ -3,7 +3,7 @@ let
inherit (lib) mkIf; inherit (lib) mkIf;
in in
{ {
config = mkIf smayzy.mako.enable { config = mkIf smayzy.hyprland.enable {
services.mako = { services.mako = {
enable = true; enable = true;
settings = { settings = {

View File

@ -18,7 +18,6 @@
./ide ./ide
./isolation ./isolation
./networking ./networking
./notif
./office ./office
./shell ./shell
./terminal ./terminal

View File

@ -1,6 +0,0 @@
{ ... }:
{
imports = [
./mako.nix
];
}

View File

@ -1,22 +0,0 @@
{
config,
lib,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.mako.enable = mkOption {
type = types.bool;
default = false;
description = "mako";
};
config = mkIf config.smayzy.mako.enable {
environment.systemPackages = with pkgs; [
mako
];
};
}

View File

@ -25,8 +25,6 @@ in
fonts.packages = with pkgs; [ nerd-fonts.jetbrains-mono ]; fonts.packages = with pkgs; [ nerd-fonts.jetbrains-mono ];
smayzy.mako.enable = true;
smayzy.kitty.enable = true; smayzy.kitty.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -42,6 +40,7 @@ in
cliphist cliphist
grim grim
slurp slurp
mako
]; ];
}; };
} }