homepage
This commit is contained in:
parent
3197673678
commit
cd4ebfb807
5 changed files with 114 additions and 20 deletions
15
flake.nix
15
flake.nix
|
|
@ -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
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue