restructure

This commit is contained in:
2026-04-22 13:27:21 -05:00
parent 06385f94f6
commit e950b4c162
34 changed files with 112 additions and 253 deletions

View File

@@ -7,6 +7,7 @@
imports = with self.nixosModules; [
inputs.home-manager.nixosModules.default
self.nixosModules.default
self.nixosModules.default
aurora-greeter
hyprland
@@ -71,6 +72,9 @@
programs.zsh.enable = true;
networking = {
hostName = "laptop";
nameservers = [
"1.1.1.1"
"1.0.0.1"

View File

@@ -2,9 +2,10 @@
flake.nixosConfigurations."laptop" = inputs.nixpkgs.lib.nixosSystem {
modules = [
self.nixosModules.laptop
self.nixosModules.laptop-hardware
modules = with self.nixosModules; [
user-nathan
laptop
laptop-hardware
];
};