We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1da23aa commit eb019b7Copy full SHA for eb019b7
1 file changed
machines/earlymoon.nix
@@ -10,17 +10,25 @@ darwin.lib.darwinSystem {
10
system = "aarch64-darwin";
11
12
modules = [
13
+ # allow unfree packages
14
+ {
15
+ nixpkgs.config.allowUnfree = true;
16
+ }
17
+
18
./../modules/darwin.nix
19
home-manager.darwinModules.home-manager
20
21
{
22
home-manager.useUserPackages = true;
23
+ home-manager.useGlobalPkgs = true;
24
25
home-manager.users.pwnwriter = {
26
imports = [
27
./../modules
28
catppuccin.homeModules.catppuccin
29
];
30
31
+ home.stateVersion = "24.05";
32
};
33
}
34
0 commit comments