This commit is contained in:
4DBug
2025-02-12 17:02:28 -06:00
parent 7a84b84969
commit 9a3d326171
4 changed files with 15 additions and 17 deletions

View File

@@ -3,7 +3,6 @@
{
hardware = {
# open gl
opengl.enable = true;
graphics.enable = true;
# nvidia drivers

View File

@@ -3,7 +3,6 @@
{
imports = [
./hardware-configuration.nix
./boot.nix
./environment.nix
./hardware.nix

View File

@@ -5,6 +5,8 @@
hostName = "nix";
networkmanager.enable = true;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Open ports in the firewall.
# firewall.allowedTCPPorts = [ ... ];
# firewall.allowedUDPPorts = [ ... ];

View File

@@ -2,6 +2,9 @@
{
services = {
# touchpad
libinput.enable = true;
# openssh
openssh.enable = true;
@@ -17,6 +20,12 @@
# jack.enable = true;
};
# auto login
displayManager.autoLogin = {
enable = true;
user = "bug";
};
# x11
xserver = {
enable = true;
@@ -24,26 +33,15 @@
# enable nvidia drivers
videoDrivers = ["nvidia"];
# touchpad
libinput.enable = true;
# x11 keymap
xkb = {
layout = "us";
variant = "";
};
displayManager = {
# gnome de
gdm.enable = true;
gnome.enable = true;
# auto login
autoLogin = {
enable = true;
user = "bug";
}
};
# gnome de
desktopManager.gnome.enable = true;
displayManager.gdm.enable = true;
};
# flatpak