Initial configuration

This commit is contained in:
Ethan Lane 2024-07-07 18:11:51 +01:00
commit 4802279787
28 changed files with 1890 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{pkgs, user, ...}: {
imports = [
../shared.nix
./hardware-configuration.nix
];
networking = {
hostName = "vylpes-desktop";
};
services = {
xserver = {
displayManager = {
# FIXME: Add proper xranger script for my setup
setupCommands = ''
'';
};
};
};
}

View file

@ -0,0 +1,2 @@
{
}