initial commit

This commit is contained in:
Sean Kovacs 2025-11-05 11:51:34 -05:00
commit 5d1efc4092
Signed by: sckova
GPG key ID: 00F325187C68651A
7 changed files with 493 additions and 0 deletions

38
hosts/alien.nix Normal file
View file

@ -0,0 +1,38 @@
{ config, pkgs, lib, catppuccin, ... }: {
networking.hostName = "alien";
catppuccin = {
accent = "lavender";
};
home-manager.users.sckova = {
imports = [ catppuccin.homeModules.catppuccin ];
};
boot.kernelPackages = pkgs.linuxPackages;
programs = {
gamescope = {
enable = true;
capSysNice = true;
};
steam = {
enable = true;
gamescopeSession.enable = true;
localNetworkGameTransfers.openFirewall = true;
};
};
services.xserver.videoDrivers = [
"modesetting"
"nvidia"
];
hardware.nvidia = {
modesetting.enable = true;
powerManagement.enable = false;
nvidiaSettings = true;
package = pkgs.linuxPackages.nvidiaPackages.stable;
};
}