Compare commits
No commits in common. "33ef812e07255f6c04ec69e8c15b2fcaa1a0259c" and "afcc0dadfe1bf1c4234b438bd4446e02812c4295" have entirely different histories.
33ef812e07
...
afcc0dadfe
@ -3,7 +3,7 @@ let
|
||||
inherit (lib) mkIf;
|
||||
in
|
||||
{
|
||||
config = mkIf smayzy.hyprland.enable {
|
||||
config = mkIf smayzy.mako.enable {
|
||||
services.mako = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
||||
@ -2,5 +2,6 @@
|
||||
{
|
||||
imports = [
|
||||
./pipewire.nix
|
||||
./lmms.nix
|
||||
];
|
||||
}
|
||||
|
||||
20
modules/nix/audio/lmms.nix
Normal file
20
modules/nix/audio/lmms.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
15
modules/nix/base/base.nix
Normal file
15
modules/nix/base/base.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ lib, config, ... }:
|
||||
let
|
||||
inherit (lib) mkIf mkOption types;
|
||||
in
|
||||
{
|
||||
options.smayzy.base = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "";
|
||||
};
|
||||
|
||||
config = mkIf config.smayzy.base {
|
||||
|
||||
};
|
||||
}
|
||||
6
modules/nix/base/default.nix
Normal file
6
modules/nix/base/default.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./base.nix
|
||||
];
|
||||
}
|
||||
@ -11,6 +11,7 @@
|
||||
./de
|
||||
./displaymanager
|
||||
./ebook
|
||||
./emulator
|
||||
./flatpak
|
||||
./games
|
||||
./groups
|
||||
@ -18,6 +19,7 @@
|
||||
./ide
|
||||
./isolation
|
||||
./networking
|
||||
./notif
|
||||
./office
|
||||
./shell
|
||||
./terminal
|
||||
|
||||
6
modules/nix/emulator/default.nix
Normal file
6
modules/nix/emulator/default.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./desmume.nix
|
||||
];
|
||||
}
|
||||
20
modules/nix/emulator/desmume.nix
Normal file
20
modules/nix/emulator/desmume.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
@ -3,5 +3,6 @@
|
||||
imports = [
|
||||
./prism.nix
|
||||
./steam.nix
|
||||
./tas.nix
|
||||
];
|
||||
}
|
||||
|
||||
@ -16,6 +16,6 @@ in
|
||||
|
||||
config = mkIf config.smayzy.steam.enable {
|
||||
programs.steam.enable = true;
|
||||
environment.systemPackages = with pkgs; [ depotdownloader];
|
||||
environment.systemPackages = with pkgs; [ samrewritten ];
|
||||
};
|
||||
}
|
||||
|
||||
23
modules/nix/games/tas.nix
Normal file
23
modules/nix/games/tas.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
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
|
||||
];
|
||||
};
|
||||
}
|
||||
@ -44,6 +44,7 @@ in
|
||||
aegisub.enable = true;
|
||||
tor.enable = true;
|
||||
chromium.enable = true;
|
||||
desmume.enable = true;
|
||||
ghidra.enable = true;
|
||||
firejail.enable = true;
|
||||
wireshark.enable = true;
|
||||
|
||||
6
modules/nix/notif/default.nix
Normal file
6
modules/nix/notif/default.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./mako.nix
|
||||
];
|
||||
}
|
||||
22
modules/nix/notif/mako.nix
Normal file
22
modules/nix/notif/mako.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{
|
||||
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
|
||||
];
|
||||
};
|
||||
}
|
||||
@ -25,6 +25,8 @@ in
|
||||
|
||||
fonts.packages = with pkgs; [ nerd-fonts.jetbrains-mono ];
|
||||
|
||||
smayzy.mako.enable = true;
|
||||
|
||||
smayzy.kitty.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
@ -40,7 +42,6 @@ in
|
||||
cliphist
|
||||
grim
|
||||
slurp
|
||||
mako
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user