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/";
+2 -2
View File
@@ -1,7 +1,7 @@
{ self, inputs, ... }: {
flake.nixosConfigurations.omen = inputs.nixpkgs.lib.nixosSystem {
flake.nixosConfigurations.omen-nixos = inputs.nixpkgs.lib.nixosSystem {
modules = [
self.modules.nixos.omen
self.modules.nixos.omen-nixos
self.modules.nixos.john
];
};
+1 -1
View File
@@ -1,5 +1,5 @@
{ self, inputs, ... }: {
flake.modules.nixos.omenHardware = { config, lib, pkgs, modulesPath, ... }: {
flake.modules.nixos.omen-nixos-hardware = { config, lib, pkgs, modulesPath, ... }: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];