Update website
This commit is contained in:
parent
1ab59d7994
commit
6d25719a61
4 changed files with 5 additions and 27 deletions
23
flake.lock
generated
23
flake.lock
generated
|
@ -235,12 +235,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"homePage": {
|
"homePage": {
|
||||||
"inputs": {
|
"flake": false,
|
||||||
"hugo-theme-anubis": "hugo-theme-anubis",
|
|
||||||
"nixpkgs": [
|
|
||||||
"nixpkgs"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1699795243,
|
"lastModified": 1699795243,
|
||||||
"narHash": "sha256-rBonL9sYcTX5db1PehLVbaf9cFJWB6n4vv522IG1n70=",
|
"narHash": "sha256-rBonL9sYcTX5db1PehLVbaf9cFJWB6n4vv522IG1n70=",
|
||||||
|
@ -255,22 +250,6 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"hugo-theme-anubis": {
|
|
||||||
"flake": false,
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1693734155,
|
|
||||||
"narHash": "sha256-/saWnt2ryheBvW9aHqpjAE4aNBhEhkrD62Ch8CI2GvM=",
|
|
||||||
"owner": "mitrichius",
|
|
||||||
"repo": "hugo-theme-anubis",
|
|
||||||
"rev": "e4e2c0bc4145ee152a32fdd940ed398ab0b77e6c",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "mitrichius",
|
|
||||||
"repo": "hugo-theme-anubis",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"jujutsu": {
|
"jujutsu": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-utils": [
|
"flake-utils": [
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||||
homePage = {
|
homePage = {
|
||||||
url = "github:dadada/dadada.li";
|
url = "github:dadada/dadada.li";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
flake = false;
|
||||||
};
|
};
|
||||||
recipemd = {
|
recipemd = {
|
||||||
url = "github:dadada/recipemd/nix-flake";
|
url = "github:dadada/recipemd/nix-flake";
|
||||||
|
|
|
@ -57,7 +57,7 @@ in
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
extraModules = [
|
extraModules = [
|
||||||
{
|
{
|
||||||
dadada.homePage.package = homePage.packages.${system}.homePage;
|
dadada.homePage.package = homePage;
|
||||||
}
|
}
|
||||||
./modules/profiles/server.nix
|
./modules/profiles/server.nix
|
||||||
./surgat/configuration.nix
|
./surgat/configuration.nix
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{ config
|
{ config
|
||||||
, pkgs
|
|
||||||
, lib
|
, lib
|
||||||
, ...
|
, ...
|
||||||
}:
|
}:
|
||||||
|
@ -10,8 +9,8 @@ with lib; {
|
||||||
options.dadada.homePage = {
|
options.dadada.homePage = {
|
||||||
enable = mkEnableOption "Enable home page";
|
enable = mkEnableOption "Enable home page";
|
||||||
package = mkOption {
|
package = mkOption {
|
||||||
type = lib.types.package;
|
type = lib.types.path;
|
||||||
description = "Package containing the homepage";
|
description = "Path containing the homepage";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue