resolve merge artifacts and remove old code

This commit is contained in:
Chris Kruining 2025-07-28 14:59:57 +02:00
parent 963d52399e
commit 97096a423f
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
10 changed files with 0 additions and 202 deletions

View file

@ -1,33 +0,0 @@
{ config, pkgs, ... }:
{
fileSystems = {
"/home/chris/media" = {
device = "ulmo:/";
fsType = "nfs";
};
};
environment.systemPackages = [ pkgs.ventoy-full-qt ];
permittedInsecurePackages = [ "ventoy-qt5-1.1.05"];
boot.supportedFilesystems = [ "nfs" ];
modules = {
boot = {
silentBoot = true;
animatedBoot = true;
};
system.audio.enable = true;
root = {
user = {
full_name = "__ROOT__";
email = "__ROOT__@${config.networking.hostName}";
};
shell = {
default = "zsh";
};
};
};
}