refactor(nix): Properly modularize home-manager
REF: https://nixos-and-flakes.thiscute.world/nixos-with-flakes/modularize-the-configuration
This commit is contained in:
parent
4a9e407688
commit
e18aa5042d
2 changed files with 4 additions and 2 deletions
|
@ -2,6 +2,10 @@
|
|||
|
||||
{
|
||||
home.homeDirectory = "/Users/ziro";
|
||||
home.packages = lib.mkAfter
|
||||
[
|
||||
pkgs.casks.vscodium
|
||||
];
|
||||
|
||||
programs.browserpass = {
|
||||
enable = true;
|
||||
|
|
|
@ -6,8 +6,6 @@
|
|||
packages =
|
||||
[
|
||||
pkgs.passff-host
|
||||
] ++ pkgs.lib.optionals (pkgs.stdenv.isDarwin) [
|
||||
pkgs.casks.vscodium
|
||||
];
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue