This commit is contained in:
admin 2024-03-27 13:08:02 +01:00
parent 3197673678
commit cd4ebfb807
5 changed files with 114 additions and 20 deletions

View file

@ -1,10 +1,18 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.home.url = "git+https://git.sondell.org/glennwso/home.git";
inputs.home.inputs.nixpkgs.follows = "nixpkgs";
outputs = { self, nixpkgs }@attrs: {
outputs = { self, nixpkgs, home }@attrs:
let
system = "x86_64-linux";
homepage = home.packages.${system}.default;
in
{
# replace 'joes-desktop' with your hostname here.
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem
{
inherit system;
specialArgs = attrs;
modules = [
./configuration.nix
@ -16,6 +24,7 @@
./filebrowser.nix
./tail.nix
./matrix.nix
(import ./homepage.nix {inherit homepage;})
# ./coturn.nix # disabled becouse tls not solved
];