tangled
alpha
login
or
join now
m1emi1em.dev
/
nixos-flake
1
fork
atom
Personal NixOS flake
1
fork
atom
overview
issues
pulls
pipelines
feat: attempt to outpout a homeManagerConfiguration
m1emi1em.dev
3 months ago
4e6dca15
ab5f1ea2
+21
-2
1 changed file
expand all
collapse all
unified
split
flake.nix
+21
-2
flake.nix
···
66
66
};
67
67
68
68
in
69
69
-
flake-parts.lib.mkFlake {inherit inputs;} {
69
69
+
flake-parts.lib.mkFlake {inherit inputs;} ({ withSystem, ...}: {
70
70
systems = [ "x86_64-linux" ];
71
71
imports = [ easy-hosts.flakeModule ];
72
72
···
88
88
# >:3c
89
89
hosts = builtins.mapAttrs (name: buildHost) myHosts;
90
90
};
91
91
-
};
91
91
+
flake.homeConfigurations."emily" = withSystem "x86_64-linux" ({inputs', system, ...}:
92
92
+
home-manager.lib.homeManagerConfiguration
93
93
+
{
94
94
+
# pkgs = nixpkgs.legacyPackages.x86_64-linux;
95
95
+
pkgs = import nixpkgs {
96
96
+
inherit system;
97
97
+
overlays = with inputs; [
98
98
+
emacs-overlay.overlay
99
99
+
];
100
100
+
allowUnfree = true;
101
101
+
};
102
102
+
extraSpecialArgs = {
103
103
+
inherit inputs';
104
104
+
inherit inputs;
105
105
+
};
106
106
+
modules = [
107
107
+
./home/emily
108
108
+
];
109
109
+
});
110
110
+
});
92
111
}