Added nix files
This commit is contained in:
28
hosts/desktop.nix
Normal file
28
hosts/desktop.nix
Normal file
@@ -0,0 +1,28 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
networking.hostName = "desktop";
|
||||
|
||||
# NVIDIA proprietary drivers
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
|
||||
hardware.nvidia = {
|
||||
modesetting.enable = true;
|
||||
open = false;
|
||||
nvidiaSettings = true;
|
||||
};
|
||||
|
||||
boot.initrd.luks.devices = {
|
||||
root = {
|
||||
device = "/dev/sda2";
|
||||
preLVM = true;
|
||||
};
|
||||
};
|
||||
|
||||
# Dual display configuration
|
||||
services.xserver = {
|
||||
screenSection = ''
|
||||
Option "metamodes" "HDMI-0: 1920x1080 +0+0, DP-0: 1920x1080 +1920+0"
|
||||
'';
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user