debugging

This commit is contained in:
2026-03-03 01:22:35 +01:00
parent cafb583c61
commit af12a97c5e
2 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
{ ... }: {
flake.nixosModules.network = {lib, ... }:{
networking.firewall.enable = true;
networking.useDHCP = true;
networking.networkmanager.enable = true;
};
}

View File

@@ -1,9 +1,10 @@
{ inputs, ...}:
{
flake.nixosModules.computer-mo = {
imports = with inputs.self.modules.nixos; [
imports = with inputs.self.nixosModules; [
base
home-manager
nix-settings
];
};
}