add xps configuration

This commit is contained in:
randomuser 2023-07-16 07:51:01 -05:00
parent accab35baf
commit ff1cc15a38
1 changed files with 12 additions and 0 deletions

12
xps.nix Normal file
View File

@ -0,0 +1,12 @@
{ lib, config, pkgs, ...}:
{
imports = [
./desktop.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
networking.hostName = "xps";
}