Secrets and syncthing
This commit is contained in:
18
flake.nix
18
flake.nix
@ -29,6 +29,12 @@
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
ragenix = {
|
||||
url = "github:yaxitech/ragenix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
|
||||
# baballonia = {
|
||||
# url = "github:Project-Babble/Baballonia";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
@ -39,7 +45,7 @@
|
||||
# wayvr-dashbourd.url = "github:PassiveLemon/lemonake/master/pkgs/wayvr-dashboard"
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, lix-module, home-manager, ...}@inputs:
|
||||
outputs = { self, nixpkgs, lix-module, ragenix, home-manager, ...}@inputs:
|
||||
{
|
||||
nixosConfigurations.pewter =
|
||||
let
|
||||
@ -54,6 +60,7 @@
|
||||
specialArgs = inputs;
|
||||
modules = [
|
||||
lix-module.nixosModules.default
|
||||
|
||||
./vr-overlay.nix
|
||||
./configuration.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
@ -61,6 +68,9 @@
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.abby = ./home.nix;
|
||||
home-manager.sharedModules = [
|
||||
ragenix.homeManagerModules.default
|
||||
];
|
||||
|
||||
home-manager.extraSpecialArgs = {
|
||||
username = "abby";
|
||||
@ -81,7 +91,8 @@
|
||||
home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
modules = [
|
||||
lix-module.nixosModules.default
|
||||
lix-module.homeManagerModules.default
|
||||
ragenix.homeManagerModules.default
|
||||
./home.nix
|
||||
];
|
||||
extraSpecialArgs = {
|
||||
@ -103,7 +114,8 @@
|
||||
inherit pkgs;
|
||||
# specialArgs = inputs;
|
||||
modules = [
|
||||
lix-module.nixosModules.default
|
||||
lix-module.homeManagerModules.default
|
||||
ragenix.homeManagerModules.default
|
||||
./home.nix
|
||||
];
|
||||
extraSpecialArgs = {
|
||||
|
||||
Reference in New Issue
Block a user