dregil: Update home-manager config

This commit is contained in:
Alexander Kobjolke 2023-03-27 21:15:51 +02:00
parent fcc7e04c7d
commit 43a6e0ef78
4 changed files with 48 additions and 2 deletions

View file

@ -19,6 +19,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
# simplex-chat = {
# url = "github:simplex-chat/simplex-chat";
# inputs.nixpkgs.follows = "nixpkgs";
# };
# age for nix to store encrypted passwords conveniently
agenix = {
url = "github:ryantm/agenix";
@ -26,7 +31,7 @@
};
};
outputs = { self, home-manager, nixpkgs, agenix, snm, ... }@inputs: {
outputs = { home-manager, nixpkgs, agenix, snm, ... }@inputs: {
nixosConfigurations."thrall" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
@ -50,5 +55,6 @@
};
nixosConfigurations."dregil" = import ./hosts/dregil { inherit inputs; };
homeConfigurations = import ./outputs/homeConfigurations inputs;
};
}