Compare commits
No commits in common. "1f89d46355f48dc5e75b8612a496107be02608fd" and "aacb70304414fe72f5818f0bd1bbac95d10f6518" have entirely different histories.
1f89d46355
...
aacb703044
@ -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
|
||||
|
||||
@ -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 {
|
||||
|
||||
};
|
||||
}
|
||||
@ -1,6 +0,0 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./base.nix
|
||||
];
|
||||
}
|
||||
@ -5,7 +5,6 @@
|
||||
./base-cli
|
||||
./hardware
|
||||
./virt
|
||||
./games
|
||||
];
|
||||
|
||||
# Timzone and locales (same for all machines so I put it here)
|
||||
|
||||
@ -1,6 +0,0 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./steam.nix
|
||||
];
|
||||
}
|
||||
@ -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;
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user