yahahaha
This commit is contained in:
parent
48554c5224
commit
646d3e383b
|
@ -7,7 +7,6 @@
|
|||
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../hardware/gpu/intel.nix
|
||||
../../profiles/auto-upgrade.nix
|
||||
../../profiles/upgrade-diff.nix
|
||||
../../profiles/sshd.nix
|
||||
|
@ -75,5 +74,5 @@
|
|||
# this value at the release version of the first install of this system.
|
||||
# Before changing this value read the documentation for this option
|
||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||
system.stateVersion = "22.11"; # Did you read the comment?
|
||||
system.stateVersion = "23.05"; # Did you read the comment?
|
||||
}
|
||||
|
|
|
@ -76,6 +76,7 @@
|
|||
../../profiles/web/sites/linktree-pbsds.nix
|
||||
../../profiles/web/sites/refleksjon-no.nix
|
||||
../../profiles/web/sites/roroslyd-no.nix
|
||||
../../profiles/web/sites/kuklefse.nix
|
||||
|
||||
#../../profiles/web/services/trivial-gradios
|
||||
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
{ config, pkgs, lib, mkDomain, ... }:
|
||||
{
|
||||
services.nginx.virtualHosts.${"kuklef.se"} = {
|
||||
forceSSL = true; # addSSL = true;
|
||||
enableACME = true; #useACMEHost = acmeDomain;
|
||||
root = pkgs.writeTextDir "index.html" ''
|
||||
🍆🌮
|
||||
'';
|
||||
locations."/".extraConfig = ''
|
||||
add_header 'Content-Type' 'text/plain; charset=utf-8';
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -8,6 +8,9 @@
|
|||
description = "daniel";
|
||||
extraGroups = [ "networkmanager" "wheel" ]; # TODO: NAS stuff
|
||||
shell = pkgs.zsh;
|
||||
packages = with pkgs; [
|
||||
kitty.terminfo
|
||||
];
|
||||
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCp8iMOx3eTiG5AmDh2KjKcigf7xdRKn9M7iZQ4RqP0np0UN2NUbu+VAMJmkWFyi3JpxmLuhszU0F1xY+3qM3ARduy1cs89B/bBE85xlOeYhcYVmpcgPR5xduS+TuHTBzFAgp+IU7/lgxdjcJ3PH4K0ruGRcX1xrytmk/vdY8IeSk3GVWDRrRbH6brO4cCCFjX0zJ7G6hBQueTPQoOy3jrUvgpRkzZY4ZCuljXtxbuX5X/2qWAkp8ca0iTQ5FzNA5JUyj+DWeEzjIEz6GrckOdV2LjWpT9+CtOqoPZOUudE1J9mJk4snNlMQjE06It7Kr50bpwoPqnxjo7ZjlHFLezl"
|
||||
|
|
Loading…
Reference in New Issue