mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
added and connected bitcoin core system module
This commit is contained in:
parent
553961b831
commit
1fe6ccb729
4 changed files with 83 additions and 10 deletions
18
flake.nix
18
flake.nix
|
|
@ -41,6 +41,15 @@
|
|||
];
|
||||
};
|
||||
|
||||
server = nixpkgs.lib.nixosSystem {
|
||||
inherit system pkgs;
|
||||
modules = [
|
||||
./src/system/machines/server
|
||||
home-manager.nixosModules.home-manager
|
||||
(import ./src/system/machines/server/home.nix)
|
||||
];
|
||||
};
|
||||
|
||||
wsl = nixpkgs.lib.nixosSystem {
|
||||
inherit system pkgs;
|
||||
modules = [
|
||||
|
|
@ -51,15 +60,6 @@
|
|||
(import ./src/system/machines/wsl/home.nix)
|
||||
];
|
||||
};
|
||||
|
||||
server = nixpkgs.lib.nixosSystem {
|
||||
inherit system pkgs;
|
||||
modules = [
|
||||
./src/system/machines/server
|
||||
home-manager.nixosModules.home-manager
|
||||
(import ./src/system/machines/server/home.nix)
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
homeConfigurations."work" = home-manager.lib.homeManagerConfiguration {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue