Working on modularizing stuff

This commit is contained in:
Chris Kruining 2024-07-21 00:07:19 +02:00
parent 835faf218d
commit 8349809fec
15 changed files with 256 additions and 41 deletions

View file

@ -1,6 +1,8 @@
{}:
{
boot.loader.systemd-boot-enable = true;
time.timeZone = "Europe/Amsterdam";
fileSystems."/home/chris/new_games" = {
device = "/dev/disk/by-label/games";

View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
networking = {
hostName = "chris-pc";
networkmanager.enable = true;
};
}