openclaw
This commit is contained in:
parent
00bc438e82
commit
7e083daf0c
6 changed files with 169 additions and 3 deletions
11
flake.nix
11
flake.nix
|
|
@ -8,9 +8,10 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
agenix.url = "github:ryantm/agenix";
|
||||
nix-openclaw.url = "github:openclaw/nix-openclaw";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, agenix, ... }:
|
||||
outputs = { self, nixpkgs, home-manager, agenix, nix-openclaw, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
in {
|
||||
|
|
@ -20,12 +21,18 @@
|
|||
modules = [
|
||||
./hosts/Nixos/configuration.nix
|
||||
agenix.nixosModules.default
|
||||
{ nixpkgs.overlays = [ nix-openclaw.overlays.default ]; }
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.backupFileExtension = "hm-bak";
|
||||
home-manager.users.ltadeu6 = import ./home/ltadeu6.nix;
|
||||
home-manager.users.ltadeu6 = {
|
||||
imports = [
|
||||
nix-openclaw.homeManagerModules.openclaw
|
||||
./home/ltadeu6.nix
|
||||
];
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue