feat: use dot013-nix instead of local user configuration

This commit is contained in:
Guz
2025-04-01 10:06:13 -03:00
parent c807d98a66
commit 1a1c28f0fd
2 changed files with 5 additions and 23 deletions

View File

@@ -20,11 +20,6 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
dot013-environment = {
url = "github:dot013/environment";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
base16 = { base16 = {
url = "github:SenchoPens/base16.nix"; url = "github:SenchoPens/base16.nix";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@@ -34,6 +29,10 @@
url = "git+https://forge.capytal.company/guz013/keikos.work"; url = "git+https://forge.capytal.company/guz013/keikos.work";
# inputs.nixpkgs.follows = "nixpkgs"; # inputs.nixpkgs.follows = "nixpkgs";
}; };
dot013-nix = {
url = "git+https://forge.capytal.company/dot013/nix";
};
}; };
outputs = { outputs = {
nixpkgs, nixpkgs,
@@ -72,5 +71,6 @@
]; ];
}; };
}; };
homeConfigurations.worm = inputs.dot013-nix.homeConfigurations."x86_64-linux".worm;
}; };
} }

View File

@@ -1,18 +0,0 @@
{
config,
pkgs,
inputs,
lib,
...
}: {
imports = [
inputs.dot013-environment.homeManagerModule
];
programs.home-manager.enable = true;
home.username = "guz";
home.homeDirectory = "/home/guz";
home.stateVersion = "23.11"; # DO NOT CHANGE
}