naming conventions

This commit is contained in:
John Lancaster
2026-06-30 23:31:11 -05:00
parent 68737a513f
commit 0e194e5d44
5 changed files with 10 additions and 8 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
{ self, inputs, ... }: {
flake.modules.nixos.omen = { pkgs, lib, ... }: {
flake.modules.nixos.omen-nixos = { pkgs, lib, ... }: {
# import any other modules from here
imports = [
self.modules.nixos.omenHardware
self.modules.nixos.omen-nixos-hardware
self.modules.nixos.base
self.modules.nixos.greetd
self.modules.nixos.niri
@@ -18,7 +18,7 @@
# Use latest kernel.
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "nixos-omen"; # Define your hostname.
networking.hostName = "omen-nixos"; # Define your hostname.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";