Compare commits

..

No commits in common. "1f89d46355f48dc5e75b8612a496107be02608fd" and "aacb70304414fe72f5818f0bd1bbac95d10f6518" have entirely different histories.

6 changed files with 3 additions and 47 deletions

View File

@ -7,10 +7,7 @@
./hardware-configuration.nix
];
smayzy = {
nvidia.enable = true;
steam.enable = true;
};
smayzy.nvidia.enable = true;
home-manager = {
extraSpecialArgs = { inherit inputs; };
@ -56,6 +53,8 @@
xdg.portal.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
programs.steam.enable = true;
environment.systemPackages = with pkgs; [
mako
wofi

View File

@ -1,15 +0,0 @@
{ lib, config, pkgs, ... }:
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 @@
{ lib, config, pkgs, ... }:
{
imports = [
./base.nix
];
}

View File

@ -5,7 +5,6 @@
./base-cli
./hardware
./virt
./games
];
# Timzone and locales (same for all machines so I put it here)

View File

@ -1,6 +0,0 @@
{ lib, config, pkgs, ... }:
{
imports = [
./steam.nix
];
}

View File

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