reduced kernel logs and formatted the files

This commit is contained in:
Semere Meharena Mebrahtom 2026-07-19 14:51:46 +02:00
parent 839b7404cf
commit 3ba0464f5f
Signed by: semere
GPG key ID: 7FC937214DF30488
10 changed files with 186 additions and 94 deletions

View file

@ -1,21 +1,28 @@
{
system = "x86_64-linux";
configModule = { config, lib, pkgs, ... }: {
imports = [
./hardware-configuration.nix
../../modules
];
configModule =
{
config,
lib,
pkgs,
...
}:
{
imports = [
./hardware-configuration.nix
../../modules
];
networking.hostName = "nabro";
networking.hostName = "nabro";
dotfiles = {
core.enable = true;
user.enable = true;
desktop.enable = true;
dev.enable = true;
shell.enable = true;
zsh.enable = true;
helix.enable = true;
dotfiles = {
core.enable = true;
user.enable = true;
desktop.enable = true;
dev.enable = true;
shell.enable = true;
zsh.enable = true;
helix.enable = true;
};
};
};
}