refactor(nix): Properly modularize home-manager

REF: https://nixos-and-flakes.thiscute.world/nixos-with-flakes/modularize-the-configuration
This commit is contained in:
Ahmad Ansori Palembani 2024-11-04 07:54:13 +07:00
parent 4a9e407688
commit e18aa5042d
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
2 changed files with 4 additions and 2 deletions

View file

@ -2,6 +2,10 @@
{
home.homeDirectory = "/Users/ziro";
home.packages = lib.mkAfter
[
pkgs.casks.vscodium
];
programs.browserpass = {
enable = true;

View file

@ -6,8 +6,6 @@
packages =
[
pkgs.passff-host
] ++ pkgs.lib.optionals (pkgs.stdenv.isDarwin) [
pkgs.casks.vscodium
];
};