homepage -> startpage

This commit is contained in:
rotterdam 2023-04-06 11:49:48 -03:00
parent 6041564b7b
commit 7c2c270f07
3 changed files with 25 additions and 3 deletions

19
flake.lock generated
View file

@ -363,7 +363,24 @@
"nixos-generators": "nixos-generators", "nixos-generators": "nixos-generators",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"nixpkgs-stable": "nixpkgs-stable", "nixpkgs-stable": "nixpkgs-stable",
"pre-commit-hooks": "pre-commit-hooks" "pre-commit-hooks": "pre-commit-hooks",
"startpage": "startpage"
}
},
"startpage": {
"flake": false,
"locked": {
"lastModified": 1680792425,
"narHash": "sha256-5kXCvoCiizxfBt7PKWhfxqT4uknSp/8kekGU4bwckgs=",
"owner": "baduhai",
"repo": "startpage",
"rev": "25d83b301541fb69119d3b35da88abb5cc24d0ae",
"type": "github"
},
"original": {
"owner": "baduhai",
"repo": "startpage",
"type": "github"
} }
}, },
"utils": { "utils": {

View file

@ -37,6 +37,11 @@
flake = false; flake = false;
}; };
startpage = {
url = "github:baduhai/startpage";
flake = false;
};
dotfiles = { dotfiles = {
url = "github:baduhai/dotfiles"; url = "github:baduhai/dotfiles";
flake = false; flake = false;
@ -49,7 +54,7 @@
}; };
outputs = inputs@{ self, nixpkgs, home-manager, baduhai-nur, kmonad outputs = inputs@{ self, nixpkgs, home-manager, baduhai-nur, kmonad
, nixpkgs-stable, deploy-rs, agenix, nixos-generators, homepage, dotfiles , nixpkgs-stable, deploy-rs, agenix, nixos-generators, startpage, dotfiles
, pre-commit-hooks, ... }: { , pre-commit-hooks, ... }: {
nixosConfigurations = { nixosConfigurations = {
rotterdam = nixpkgs.lib.nixosSystem { rotterdam = nixpkgs.lib.nixosSystem {

View file

@ -12,7 +12,7 @@
useACMEHost = "baduhai.me"; useACMEHost = "baduhai.me";
forceSSL = true; forceSSL = true;
kTLS = true; kTLS = true;
root = inputs.homepage; root = inputs.startpage;
}; };
}; };
} }