added checks and formatting pre-commit hooks

This commit is contained in:
Fishandchips321 2026-03-01 15:33:24 +00:00
parent d8dd32193d
commit 81f128265c
10 changed files with 166 additions and 42 deletions

View file

@ -1,7 +1,9 @@
{ config, pkgs, ... }:
_:
{
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
boot.loader.grub.useOSProber = true;
boot.loader.grub = {
enable = true;
device = "/dev/vda";
useOSProber = true;
};
}

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
programs = {

View file

@ -1,9 +1,4 @@
{
config,
pkgs,
lib,
...
}:
{ config, lib, ... }:
let
cfg = config.modules.k3s;

View file

@ -1,5 +1 @@
{ config, pkgs, ... }:
{
networking.networkmanager.enable = true;
}
_: { networking.networkmanager.enable = true; }