Compare commits

...

5 Commits

Author SHA1 Message Date
33ef812e07 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
2026-01-17 15:46:37 +01:00
00fa7a3c36 remove libtas & sam 2026-01-17 12:29:25 +01:00
cd9d91e189 remove desmume 2026-01-17 12:21:39 +01:00
b4c7a4371c remove base 2026-01-17 12:15:51 +01:00
3566c46ac5 remove lmms 2026-01-17 12:14:04 +01:00
15 changed files with 3 additions and 127 deletions

View File

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

View File

@ -2,6 +2,5 @@
{
imports = [
./pipewire.nix
./lmms.nix
];
}

View File

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

View File

@ -1,15 +0,0 @@
{ lib, config, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.base = mkOption {
type = types.bool;
default = false;
description = "";
};
config = mkIf config.smayzy.base {
};
}

View File

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

View File

@ -11,7 +11,6 @@
./de
./displaymanager
./ebook
./emulator
./flatpak
./games
./groups
@ -19,7 +18,6 @@
./ide
./isolation
./networking
./notif
./office
./shell
./terminal

View File

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

View File

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

View File

@ -3,6 +3,5 @@
imports = [
./prism.nix
./steam.nix
./tas.nix
];
}

View File

@ -16,6 +16,6 @@ in
config = mkIf config.smayzy.steam.enable {
programs.steam.enable = true;
environment.systemPackages = with pkgs; [ samrewritten ];
environment.systemPackages = with pkgs; [ depotdownloader];
};
}

View File

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

View File

@ -44,7 +44,6 @@ in
aegisub.enable = true;
tor.enable = true;
chromium.enable = true;
desmume.enable = true;
ghidra.enable = true;
firejail.enable = true;
wireshark.enable = true;

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 ];
smayzy.mako.enable = true;
smayzy.kitty.enable = true;
environment.systemPackages = with pkgs; [
@ -42,6 +40,7 @@ in
cliphist
grim
slurp
mako
];
};
}