test
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
||||
{
|
||||
general = {
|
||||
Hostname = "TEXAS";
|
||||
Hostname = "hakase";
|
||||
Username = "lsoriano";
|
||||
Timezone = "America/Chicago";
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
};
|
||||
gitProfile = {
|
||||
User = "kenji";
|
||||
Email = "kenji@texas.sakamoto.dev";
|
||||
Email = "kenji@sakamoto.dev";
|
||||
defaultBranch = "master";
|
||||
};
|
||||
ssh = {
|
||||
|
||||
@@ -58,13 +58,6 @@
|
||||
./hosts/desktop/configuration.nix
|
||||
];
|
||||
};
|
||||
gaming = lib.nixosSystem {
|
||||
inherit system;
|
||||
specialArgs = args;
|
||||
modules = [
|
||||
./hosts/gaming/configuration.nix
|
||||
];
|
||||
};
|
||||
headless = lib.nixosSystem {
|
||||
inherit system;
|
||||
specialArgs = args;
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
{general, ...}: {
|
||||
imports = [
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home = {
|
||||
username = "${general.Username}";
|
||||
homeDirectory = "/home/${general.Username}";
|
||||
packages = [];
|
||||
sessionVariables = {};
|
||||
};
|
||||
|
||||
systemd.user.startServices = "sd-switch";
|
||||
home.stateVersion = "23.05";
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
{
|
||||
pkgs,
|
||||
general,
|
||||
builds,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [];
|
||||
|
||||
nixpkgs.config.allowUnfree = general.allowUnfree;
|
||||
|
||||
nix.settings = {
|
||||
trusted-users = builds.builder.trustedUsers;
|
||||
experimental-features = ["nix-command" "flakes"];
|
||||
};
|
||||
|
||||
programs.ssh.extraConfig = general.ssh.extraConfig;
|
||||
|
||||
nix.distributedBuilds = true;
|
||||
nix.settings.builders-use-substitutes = true;
|
||||
|
||||
# nix.buildMachines = builder.buildMachines;
|
||||
system.stateVersion = "25.05";
|
||||
}
|
||||
@@ -6,6 +6,8 @@
|
||||
environment.systemPackages = [
|
||||
# or home.packages
|
||||
inputs.nix-gaming.packages.${pkgs.system}.wine # installs a package
|
||||
pkgs.steam
|
||||
pkgs.protonup-qt
|
||||
];
|
||||
programs.steam.platformOptimizations.enable = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user