Compare commits
	
		
			2 commits
		
	
	
		
			822ef5facb
			...
			fb61db7011
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| fb61db7011 | |||
| 210bf5c415 | 
					 5 changed files with 10 additions and 6 deletions
				
			
		| 
						 | 
					@ -20,6 +20,7 @@
 | 
				
			||||||
      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,6 +5,9 @@
 | 
				
			||||||
  lib,
 | 
					  lib,
 | 
				
			||||||
  ...
 | 
					  ...
 | 
				
			||||||
}: {
 | 
					}: {
 | 
				
			||||||
 | 
					  imports = [
 | 
				
			||||||
 | 
					    ./nginx.nix
 | 
				
			||||||
 | 
					  ];
 | 
				
			||||||
  services.jellyfin = {
 | 
					  services.jellyfin = {
 | 
				
			||||||
    enable = true;
 | 
					    enable = true;
 | 
				
			||||||
    openFirewall = true;
 | 
					    openFirewall = true;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -13,7 +13,6 @@ 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
 | 
				
			||||||
| 
						 | 
					@ -62,11 +61,6 @@ 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,6 +12,7 @@ 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
 | 
				
			||||||
| 
						 | 
					@ -53,6 +54,11 @@ 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