Compare commits
No commits in common. "fb61db7011f4c9f765fa8ecda4540bdaf0841442" and "822ef5facb05346bebe0eb791f236ffa59d36f04" have entirely different histories.
fb61db7011
...
822ef5facb
5 changed files with 6 additions and 10 deletions
|
@ -20,7 +20,6 @@
|
||||||
greeters.gtk.enable = false;
|
greeters.gtk.enable = false;
|
||||||
greeter.enable = false;
|
greeter.enable = false;
|
||||||
};
|
};
|
||||||
xkb.options = "ctrl:nocaps,compose:rctrl";
|
|
||||||
};
|
};
|
||||||
home-manager.users.${config.host.user} = {config, ...}: {
|
home-manager.users.${config.host.user} = {config, ...}: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
|
@ -5,9 +5,6 @@
|
||||||
lib,
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
|
||||||
./nginx.nix
|
|
||||||
];
|
|
||||||
services.jellyfin = {
|
services.jellyfin = {
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
|
|
|
@ -13,6 +13,7 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
inputs.disko.nixosModules.disko
|
inputs.disko.nixosModules.disko
|
||||||
./disk-config.nix
|
./disk-config.nix
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
./nginx.nix
|
||||||
./restic.nix
|
./restic.nix
|
||||||
../../configs/nixos/common.nix
|
../../configs/nixos/common.nix
|
||||||
../../configs/nixos/tailscale.nix
|
../../configs/nixos/tailscale.nix
|
||||||
|
@ -61,6 +62,11 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
sops = lib.mkIf (inputs ? nix-secrets) {
|
sops = lib.mkIf (inputs ? nix-secrets) {
|
||||||
secrets = {
|
secrets = {
|
||||||
duckdns-token.sopsFile = "${inputs.nix-secrets}/duckdns.yaml";
|
duckdns-token.sopsFile = "${inputs.nix-secrets}/duckdns.yaml";
|
||||||
|
gabevenberg-draft-credentials = {
|
||||||
|
sopsFile = "${inputs.nix-secrets}/draft.gabevenberg.com";
|
||||||
|
format = "binary";
|
||||||
|
owner = config.services.nginx.user;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,6 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
inputs.disko.nixosModules.disko
|
inputs.disko.nixosModules.disko
|
||||||
./disk-config.nix
|
./disk-config.nix
|
||||||
./nginx.nix
|
|
||||||
./restic.nix
|
./restic.nix
|
||||||
../../roles/nixos/vm.nix
|
../../roles/nixos/vm.nix
|
||||||
../../configs/nixos/common.nix
|
../../configs/nixos/common.nix
|
||||||
|
@ -54,11 +53,6 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
format = "binary";
|
format = "binary";
|
||||||
owner = "radicale";
|
owner = "radicale";
|
||||||
};
|
};
|
||||||
gabevenberg-draft-credentials = {
|
|
||||||
sopsFile = "${inputs.nix-secrets}/draft.gabevenberg.com";
|
|
||||||
format = "binary";
|
|
||||||
owner = config.services.nginx.user;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home-manager.users.${config.host.user} = {
|
home-manager.users.${config.host.user} = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue