1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 08:10:43 +01:00

refactor: put users in separate file

This commit is contained in:
Ryan Cao 2023-08-15 11:34:20 +08:00
parent 132956970f
commit af074f2756
Signed by: ryanccn
SSH key fingerprint: SHA256:NtP/BlVhoQq4xU6BEcZeT8nIPvHntkJ3lIc2yB+F09E
3 changed files with 26 additions and 21 deletions

View file

@ -1,7 +1,6 @@
{
pkgs,
attic,
catppuccin,
discord-applemusic-rich-presence,
nyoom,
...
@ -143,20 +142,5 @@
taps = ["1password/tap"];
};
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
ctpModule = catppuccin.homeManagerModules.catppuccin;
discord-applemusic-rich-presence = discord-applemusic-rich-presence.homeManagerModules.default;
};
};
users.users.ryanccn = {
home = "/Users/ryanccn";
};
home-manager.users.ryanccn = import ./home.nix;
system.stateVersion = 4;
}