1
0
forked from extern/nix-config

meta: Capitalize variables

This should make it easier to identify and search for variables.
This commit is contained in:
Donovan Glover 2023-06-05 18:48:55 -04:00
parent aef8eaa16a
commit 24756ad683
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 5 additions and 5 deletions

View File

@ -32,10 +32,10 @@
}; };
outputs = { self, nixpkgs, home-manager, hyprland, stylix, nix-gaming, ... }@attrs: let outputs = { self, nixpkgs, home-manager, hyprland, stylix, nix-gaming, ... }@attrs: let
variables = import ./variables.nix; VARIABLES = import ./variables.nix;
in { in {
nixosConfigurations."${variables.hostname}" = nixpkgs.lib.nixosSystem { nixosConfigurations."${VARIABLES.HOSTNAME}" = nixpkgs.lib.nixosSystem {
system = variables.system; system = VARIABLES.SYSTEM;
specialArgs = attrs; specialArgs = attrs;
modules = [ modules = [
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager

View File

@ -1,4 +1,4 @@
{ {
hostname = "nixos"; HOSTNAME = "nixos";
system = "x86_64-linux"; SYSTEM = "x86_64-linux";
} }