Rename modules directory system to nixos

This commit is contained in:
SebastianStork 2026-02-26 21:11:45 +01:00
parent 653a6f310b
commit 1c1b9221fc
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
48 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,25 @@
{
config,
pkgs,
lib,
...
}:
{
options.custom.programs.steam.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.programs.steam.enable {
programs = {
steam.enable = true;
gamemode = {
enable = true;
settings.custom = {
start = "${lib.getExe pkgs.libnotify} 'GameMode started'";
end = "${lib.getExe pkgs.libnotify} 'GameMode ended'";
};
};
};
environment.systemPackages = [ pkgs.mangohud ];
};
}

View file

@ -0,0 +1,16 @@
{
config,
pkgs-unstable,
lib,
...
}:
{
options.custom.programs.winboat.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.programs.winboat.enable {
virtualisation.docker.enable = true;
users.users.seb.extraGroups = [ config.users.groups.docker.name ];
environment.systemPackages = [ pkgs-unstable.winboat ];
};
}

View file

@ -0,0 +1,15 @@
{
config,
pkgs,
lib,
...
}:
{
options.custom.programs.wireshark.enable = lib.mkEnableOption "";
config = lib.mkIf config.custom.programs.wireshark.enable {
programs.wireshark.enable = true;
environment.systemPackages = [ pkgs.wireshark ];
users.users.seb.extraGroups = [ config.users.groups.wireshark.name ];
};
}