changed info.nix to config.nix

This commit is contained in:
lsoriano-mcm
2025-06-07 14:03:34 -05:00
parent f8e327d46d
commit ca9e487111
4 changed files with 10 additions and 10 deletions
+8
View File
@@ -0,0 +1,8 @@
let
default = import ./config.default.nix;
local =
if builtins.pathExists ./config.local.nix
then import ./config.local.nix
else {};
in
default // local
+2 -2
View File
@@ -39,7 +39,7 @@
kitty-catppuccin,
...
} @ inputs: let
info = import ./info.nix;
config = import ./config.nix;
lib = nixpkgs.lib;
system = "x86_64-linux";
# pkgs = nixpkgs.legacyPackages.${system}; # alternative, without overlays. Unused.
@@ -47,7 +47,7 @@
{
inherit inputs system;
}
// info;
// config;
in {
# linux only
nixosConfigurations = {
-8
View File
@@ -1,8 +0,0 @@
let
default = import ./info.default.nix;
local =
if builtins.pathExists ./info.local.nix
then import ./info.local.nix
else {};
in
default // local