Compare commits
2 commits
f89c11b7b3
...
98ad20baca
Author | SHA1 | Date | |
---|---|---|---|
![]() |
98ad20baca | ||
![]() |
cfdf227b9c |
12
flake.nix
12
flake.nix
|
@ -1,5 +1,8 @@
|
||||||
{
|
{
|
||||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
inputs = {
|
||||||
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
|
||||||
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
self,
|
self,
|
||||||
|
@ -42,6 +45,9 @@
|
||||||
trivium = overlay;
|
trivium = overlay;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
homeManagerModules.default = ./hm;
|
||||||
|
nixosModules.default = ./nixos;
|
||||||
|
|
||||||
lib = {
|
lib = {
|
||||||
mkSystemFlake = {
|
mkSystemFlake = {
|
||||||
flakes,
|
flakes,
|
||||||
|
@ -151,7 +157,7 @@
|
||||||
hostConfig = platform:
|
hostConfig = platform:
|
||||||
nixosSystem {
|
nixosSystem {
|
||||||
modules = [
|
modules = [
|
||||||
./nixos
|
self.nixosModules.default
|
||||||
nixosSourcePath
|
nixosSourcePath
|
||||||
platform
|
platform
|
||||||
];
|
];
|
||||||
|
@ -177,7 +183,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
./hm
|
self.homeManagerModules.default
|
||||||
hmSourcePath
|
hmSourcePath
|
||||||
platform
|
platform
|
||||||
registry
|
registry
|
||||||
|
|
Loading…
Reference in a new issue