mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 11:45:06 +01:00
cleanup
This commit is contained in:
parent
d47c674cad
commit
c9ea4cccd9
2 changed files with 21 additions and 9 deletions
|
|
@ -89,6 +89,17 @@
|
|||
nils = {
|
||||
id = 0;
|
||||
name = "nils";
|
||||
|
||||
bookmarks = [
|
||||
{
|
||||
name = "NixOS options";
|
||||
url = "https://search.nixos.org/options";
|
||||
}
|
||||
{
|
||||
name = "home-manager options";
|
||||
url = "https://rycee.gitlab.io/home-manager/options.html";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -72,20 +72,21 @@
|
|||
boot.loader.grub.useOSProber = true;
|
||||
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver.enable = true;
|
||||
|
||||
# Enable the GNOME Desktop Environment.
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
|
||||
# Enable the GNOME Desktop Environment.
|
||||
displayManager.gdm.enable = true;
|
||||
desktopManager.gnome.enable = true;
|
||||
|
||||
# Configure keymap in X11
|
||||
layout = "ch";
|
||||
xkbVariant = "";
|
||||
|
||||
# ndivia drivers
|
||||
videoDrivers = [ "nvidia" ];
|
||||
};
|
||||
|
||||
# ndivia drivers
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
hardware.opengl.enable = true;
|
||||
|
||||
# TODO: Create a fancontrol config
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue