forked from Drift/pvv-nixos-config
		
	Compare commits
	
		
			18 Commits
		
	
	
		
			setup-open
			...
			setup-kerb
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| fc1b7db291 | |||
| 28e3f5672c | |||
| 
						
						
							
						
						8ced91a285
	
				 | 
					
					
						|||
| 2c42b120a6 | |||
| 27ba3f7a7f | |||
| c1c58122ea | |||
| 
						
						
							
						
						7ac960c5ff
	
				 | 
					
					
						|||
| 54a54ad0f5 | |||
| f7e892fad9 | |||
| 2a1e649eed | |||
| d7638138ed | |||
| c8d383c9ab | |||
| c807d6ec2b | |||
| 42c1803c9b | |||
| c4df999058 | |||
| 
						
						
							
						
						3caa66fb64
	
				 | 
					
					
						|||
| b458801f95 | |||
| 1a683d2a92 | 
@@ -26,7 +26,7 @@ Det er sikkert lurt å lage en PR først om du ikke er vandt til nix enda.
 | 
				
			|||||||
Innen 24h skal alle systemene hente ned den nye konfigurasjonen og deploye den.
 | 
					Innen 24h skal alle systemene hente ned den nye konfigurasjonen og deploye den.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Du kan tvinge en maskin til å oppdatere seg før dette ved å kjøre:
 | 
					Du kan tvinge en maskin til å oppdatere seg før dette ved å kjøre:
 | 
				
			||||||
`nixos-rebuild switch --update-input nixpkgs --update-input unstable --no-write-lock-file --refresh --flake git+https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git --upgrade`
 | 
					`nixos-rebuild switch --update-input nixpkgs --update-input nixpkgs-unstable --no-write-lock-file --refresh --flake git+https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git --upgrade`
 | 
				
			||||||
 | 
					
 | 
				
			||||||
som root på maskinen.
 | 
					som root på maskinen.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										5
									
								
								base.nix
									
									
									
									
									
								
							
							
						
						
									
										5
									
								
								base.nix
									
									
									
									
									
								
							@@ -32,7 +32,7 @@
 | 
				
			|||||||
    flake = "git+https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git";
 | 
					    flake = "git+https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git";
 | 
				
			||||||
    flags = [
 | 
					    flags = [
 | 
				
			||||||
      "--update-input" "nixpkgs"
 | 
					      "--update-input" "nixpkgs"
 | 
				
			||||||
      "--update-input" "unstable"
 | 
					      "--update-input" "nixpkgs-unstable"
 | 
				
			||||||
      "--no-write-lock-file"
 | 
					      "--no-write-lock-file"
 | 
				
			||||||
    ];
 | 
					    ];
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
@@ -71,6 +71,9 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  users.groups."drift".name = "drift";
 | 
					  users.groups."drift".name = "drift";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  # Trusted users on the nix builder machines
 | 
				
			||||||
 | 
					  users.groups."nix-builder-users".name = "nix-builder-users";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  services.openssh = {
 | 
					  services.openssh = {
 | 
				
			||||||
    enable = true;
 | 
					    enable = true;
 | 
				
			||||||
    extraConfig = ''
 | 
					    extraConfig = ''
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										88
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										88
									
								
								flake.lock
									
									
									
										generated
									
									
									
								
							@@ -1,9 +1,29 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  "nodes": {
 | 
					  "nodes": {
 | 
				
			||||||
 | 
					    "disko": {
 | 
				
			||||||
 | 
					      "inputs": {
 | 
				
			||||||
 | 
					        "nixpkgs": [
 | 
				
			||||||
 | 
					          "nixpkgs"
 | 
				
			||||||
 | 
					        ]
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "locked": {
 | 
				
			||||||
 | 
					        "lastModified": 1700927249,
 | 
				
			||||||
 | 
					        "narHash": "sha256-iqmIWiEng890/ru7ZBf4nUezFPyRm2fjRTvuwwxqk2o=",
 | 
				
			||||||
 | 
					        "owner": "nix-community",
 | 
				
			||||||
 | 
					        "repo": "disko",
 | 
				
			||||||
 | 
					        "rev": "3cb78c93e6a02f494aaf6aeb37481c27a2e2ee22",
 | 
				
			||||||
 | 
					        "type": "github"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "original": {
 | 
				
			||||||
 | 
					        "owner": "nix-community",
 | 
				
			||||||
 | 
					        "repo": "disko",
 | 
				
			||||||
 | 
					        "type": "github"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
    "grzegorz": {
 | 
					    "grzegorz": {
 | 
				
			||||||
      "inputs": {
 | 
					      "inputs": {
 | 
				
			||||||
        "nixpkgs": [
 | 
					        "nixpkgs": [
 | 
				
			||||||
          "unstable"
 | 
					          "nixpkgs-unstable"
 | 
				
			||||||
        ]
 | 
					        ]
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
      "locked": {
 | 
					      "locked": {
 | 
				
			||||||
@@ -45,33 +65,33 @@
 | 
				
			|||||||
        "nixpkgs-lib": "nixpkgs-lib"
 | 
					        "nixpkgs-lib": "nixpkgs-lib"
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
      "locked": {
 | 
					      "locked": {
 | 
				
			||||||
        "lastModified": 1697420972,
 | 
					        "lastModified": 1697936579,
 | 
				
			||||||
        "narHash": "sha256-eFDasOzXAN8VswUntNBBwvKFyVKFvmwRNNVTDfGdB3M=",
 | 
					        "narHash": "sha256-nMyepKnwoHMzu2OpXvG2ZhU081TV9ENmWCo0vWxs6AI=",
 | 
				
			||||||
        "owner": "dali99",
 | 
					        "owner": "dali99",
 | 
				
			||||||
        "repo": "nixos-matrix-modules",
 | 
					        "repo": "nixos-matrix-modules",
 | 
				
			||||||
        "rev": "1e370b96223b94d52006249a60033caaea605c65",
 | 
					        "rev": "e09814657187c8ed1a5fe1646df6d8da1eb2dee9",
 | 
				
			||||||
        "type": "github"
 | 
					        "type": "github"
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
      "original": {
 | 
					      "original": {
 | 
				
			||||||
        "owner": "dali99",
 | 
					        "owner": "dali99",
 | 
				
			||||||
        "repo": "nixos-matrix-modules",
 | 
					        "repo": "nixos-matrix-modules",
 | 
				
			||||||
 | 
					        "rev": "e09814657187c8ed1a5fe1646df6d8da1eb2dee9",
 | 
				
			||||||
        "type": "github"
 | 
					        "type": "github"
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "nixpkgs": {
 | 
					    "nixpkgs": {
 | 
				
			||||||
      "locked": {
 | 
					      "locked": {
 | 
				
			||||||
        "lastModified": 1697706247,
 | 
					        "lastModified": 1701362232,
 | 
				
			||||||
        "narHash": "sha256-nWLggeUxn/l8JrcQr9f+RfnCXp8cn0BN568PjMJh9ko=",
 | 
					        "narHash": "sha256-GVdzxL0lhEadqs3hfRLuj+L1OJFGiL/L7gCcelgBlsw=",
 | 
				
			||||||
        "owner": "NixOS",
 | 
					        "owner": "NixOS",
 | 
				
			||||||
        "repo": "nixpkgs",
 | 
					        "repo": "nixpkgs",
 | 
				
			||||||
        "rev": "4ee5b576ac2861a818950aea99f609d7a6fc02a3",
 | 
					        "rev": "d2332963662edffacfddfad59ff4f709dde80ffe",
 | 
				
			||||||
        "type": "github"
 | 
					        "type": "github"
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
      "original": {
 | 
					      "original": {
 | 
				
			||||||
        "owner": "NixOS",
 | 
					        "id": "nixpkgs",
 | 
				
			||||||
        "ref": "nixos-23.05-small",
 | 
					        "ref": "nixos-23.05-small",
 | 
				
			||||||
        "repo": "nixpkgs",
 | 
					        "type": "indirect"
 | 
				
			||||||
        "type": "github"
 | 
					 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "nixpkgs-lib": {
 | 
					    "nixpkgs-lib": {
 | 
				
			||||||
@@ -91,11 +111,11 @@
 | 
				
			|||||||
    },
 | 
					    },
 | 
				
			||||||
    "nixpkgs-stable": {
 | 
					    "nixpkgs-stable": {
 | 
				
			||||||
      "locked": {
 | 
					      "locked": {
 | 
				
			||||||
        "lastModified": 1697332183,
 | 
					        "lastModified": 1700905716,
 | 
				
			||||||
        "narHash": "sha256-ACYvYsgLETfEI2xM1jjp8ZLVNGGC0onoCGe+69VJGGE=",
 | 
					        "narHash": "sha256-w1vHn2MbGfdC+CrP3xLZ3scsI06N0iQLU7eTHIVEFGw=",
 | 
				
			||||||
        "owner": "NixOS",
 | 
					        "owner": "NixOS",
 | 
				
			||||||
        "repo": "nixpkgs",
 | 
					        "repo": "nixpkgs",
 | 
				
			||||||
        "rev": "0e1cff585c1a85aeab059d3109f66134a8f76935",
 | 
					        "rev": "dfb95385d21475da10b63da74ae96d89ab352431",
 | 
				
			||||||
        "type": "github"
 | 
					        "type": "github"
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
      "original": {
 | 
					      "original": {
 | 
				
			||||||
@@ -105,6 +125,21 @@
 | 
				
			|||||||
        "type": "github"
 | 
					        "type": "github"
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
 | 
					    "nixpkgs-unstable": {
 | 
				
			||||||
 | 
					      "locked": {
 | 
				
			||||||
 | 
					        "lastModified": 1701368325,
 | 
				
			||||||
 | 
					        "narHash": "sha256-3OqZyi2EdopJxpxwrySPyCTuCvfBY4oXTLVgQ4B6qDg=",
 | 
				
			||||||
 | 
					        "owner": "NixOS",
 | 
				
			||||||
 | 
					        "repo": "nixpkgs",
 | 
				
			||||||
 | 
					        "rev": "3934dbde4f4a0e266825348bc4ad1bdd00a8d6a3",
 | 
				
			||||||
 | 
					        "type": "github"
 | 
				
			||||||
 | 
					      },
 | 
				
			||||||
 | 
					      "original": {
 | 
				
			||||||
 | 
					        "id": "nixpkgs",
 | 
				
			||||||
 | 
					        "ref": "nixos-unstable-small",
 | 
				
			||||||
 | 
					        "type": "indirect"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
    "pvv-calendar-bot": {
 | 
					    "pvv-calendar-bot": {
 | 
				
			||||||
      "inputs": {
 | 
					      "inputs": {
 | 
				
			||||||
        "nixpkgs": [
 | 
					        "nixpkgs": [
 | 
				
			||||||
@@ -127,13 +162,14 @@
 | 
				
			|||||||
    },
 | 
					    },
 | 
				
			||||||
    "root": {
 | 
					    "root": {
 | 
				
			||||||
      "inputs": {
 | 
					      "inputs": {
 | 
				
			||||||
 | 
					        "disko": "disko",
 | 
				
			||||||
        "grzegorz": "grzegorz",
 | 
					        "grzegorz": "grzegorz",
 | 
				
			||||||
        "grzegorz-clients": "grzegorz-clients",
 | 
					        "grzegorz-clients": "grzegorz-clients",
 | 
				
			||||||
        "matrix-next": "matrix-next",
 | 
					        "matrix-next": "matrix-next",
 | 
				
			||||||
        "nixpkgs": "nixpkgs",
 | 
					        "nixpkgs": "nixpkgs",
 | 
				
			||||||
 | 
					        "nixpkgs-unstable": "nixpkgs-unstable",
 | 
				
			||||||
        "pvv-calendar-bot": "pvv-calendar-bot",
 | 
					        "pvv-calendar-bot": "pvv-calendar-bot",
 | 
				
			||||||
        "sops-nix": "sops-nix",
 | 
					        "sops-nix": "sops-nix"
 | 
				
			||||||
        "unstable": "unstable"
 | 
					 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "sops-nix": {
 | 
					    "sops-nix": {
 | 
				
			||||||
@@ -144,11 +180,11 @@
 | 
				
			|||||||
        "nixpkgs-stable": "nixpkgs-stable"
 | 
					        "nixpkgs-stable": "nixpkgs-stable"
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
      "locked": {
 | 
					      "locked": {
 | 
				
			||||||
        "lastModified": 1697339241,
 | 
					        "lastModified": 1701127353,
 | 
				
			||||||
        "narHash": "sha256-ITsFtEtRbCBeEH9XrES1dxZBkE1fyNNUfIyQjQ2AYQs=",
 | 
					        "narHash": "sha256-qVNX0wOl0b7+I35aRu78xUphOyELh+mtUp1KBx89K1Q=",
 | 
				
			||||||
        "owner": "Mic92",
 | 
					        "owner": "Mic92",
 | 
				
			||||||
        "repo": "sops-nix",
 | 
					        "repo": "sops-nix",
 | 
				
			||||||
        "rev": "51186b8012068c417dac7c31fb12861726577898",
 | 
					        "rev": "b1edbf5c0464b4cced90a3ba6f999e671f0af631",
 | 
				
			||||||
        "type": "github"
 | 
					        "type": "github"
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
      "original": {
 | 
					      "original": {
 | 
				
			||||||
@@ -156,22 +192,6 @@
 | 
				
			|||||||
        "repo": "sops-nix",
 | 
					        "repo": "sops-nix",
 | 
				
			||||||
        "type": "github"
 | 
					        "type": "github"
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					 | 
				
			||||||
    "unstable": {
 | 
					 | 
				
			||||||
      "locked": {
 | 
					 | 
				
			||||||
        "lastModified": 1697713104,
 | 
					 | 
				
			||||||
        "narHash": "sha256-DN7YOyKMCpAVeZ44N42LrujtTkoerkS9+kTufQiuntY=",
 | 
					 | 
				
			||||||
        "owner": "NixOS",
 | 
					 | 
				
			||||||
        "repo": "nixpkgs",
 | 
					 | 
				
			||||||
        "rev": "6be2c349a30fcb489a3153dd331e9df387ab6449",
 | 
					 | 
				
			||||||
        "type": "github"
 | 
					 | 
				
			||||||
      },
 | 
					 | 
				
			||||||
      "original": {
 | 
					 | 
				
			||||||
        "owner": "NixOS",
 | 
					 | 
				
			||||||
        "ref": "nixos-unstable-small",
 | 
					 | 
				
			||||||
        "repo": "nixpkgs",
 | 
					 | 
				
			||||||
        "type": "github"
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "root": "root",
 | 
					  "root": "root",
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										45
									
								
								flake.nix
									
									
									
									
									
								
							
							
						
						
									
										45
									
								
								flake.nix
									
									
									
									
									
								
							@@ -2,24 +2,28 @@
 | 
				
			|||||||
  description = "PVV System flake";
 | 
					  description = "PVV System flake";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  inputs = {
 | 
					  inputs = {
 | 
				
			||||||
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05-small";
 | 
					    nixpkgs.url = "nixpkgs/nixos-23.05-small";
 | 
				
			||||||
    unstable.url = "github:NixOS/nixpkgs/nixos-unstable-small";
 | 
					    nixpkgs-unstable.url = "nixpkgs/nixos-unstable-small";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    sops-nix.url = "github:Mic92/sops-nix";
 | 
					    sops-nix.url = "github:Mic92/sops-nix";
 | 
				
			||||||
    sops-nix.inputs.nixpkgs.follows = "nixpkgs";
 | 
					    sops-nix.inputs.nixpkgs.follows = "nixpkgs";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    disko.url = "github:nix-community/disko";
 | 
				
			||||||
 | 
					    disko.inputs.nixpkgs.follows = "nixpkgs";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    pvv-calendar-bot.url = "git+https://git.pvv.ntnu.no/Projects/calendar-bot.git";
 | 
					    pvv-calendar-bot.url = "git+https://git.pvv.ntnu.no/Projects/calendar-bot.git";
 | 
				
			||||||
    pvv-calendar-bot.inputs.nixpkgs.follows = "nixpkgs";
 | 
					    pvv-calendar-bot.inputs.nixpkgs.follows = "nixpkgs";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    matrix-next.url = "github:dali99/nixos-matrix-modules";
 | 
					    # Last release compatible with 23.05
 | 
				
			||||||
 | 
					    matrix-next.url = "github:dali99/nixos-matrix-modules/e09814657187c8ed1a5fe1646df6d8da1eb2dee9";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    grzegorz.url = "github:Programvareverkstedet/grzegorz";
 | 
					    grzegorz.url = "github:Programvareverkstedet/grzegorz";
 | 
				
			||||||
    grzegorz.inputs.nixpkgs.follows = "unstable";
 | 
					    grzegorz.inputs.nixpkgs.follows = "nixpkgs-unstable";
 | 
				
			||||||
    grzegorz-clients.url = "github:Programvareverkstedet/grzegorz-clients";
 | 
					    grzegorz-clients.url = "github:Programvareverkstedet/grzegorz-clients";
 | 
				
			||||||
    grzegorz-clients.inputs.nixpkgs.follows = "nixpkgs";
 | 
					    grzegorz-clients.inputs.nixpkgs.follows = "nixpkgs";
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  outputs = { self, nixpkgs, matrix-next, pvv-calendar-bot, unstable, sops-nix, ... }@inputs:
 | 
					  outputs = { self, nixpkgs, nixpkgs-unstable, sops-nix, disko, ... }@inputs:
 | 
				
			||||||
  let
 | 
					  let
 | 
				
			||||||
    nixlib = nixpkgs.lib;
 | 
					    nixlib = nixpkgs.lib;
 | 
				
			||||||
    systems = [
 | 
					    systems = [
 | 
				
			||||||
@@ -42,7 +46,7 @@
 | 
				
			|||||||
        rec {
 | 
					        rec {
 | 
				
			||||||
          system = "x86_64-linux";
 | 
					          system = "x86_64-linux";
 | 
				
			||||||
          specialArgs = {
 | 
					          specialArgs = {
 | 
				
			||||||
            inherit unstable inputs;
 | 
					            inherit nixpkgs-unstable inputs;
 | 
				
			||||||
            values = import ./values.nix;
 | 
					            values = import ./values.nix;
 | 
				
			||||||
          };
 | 
					          };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -57,7 +61,7 @@
 | 
				
			|||||||
              (final: prev: {
 | 
					              (final: prev: {
 | 
				
			||||||
                mx-puppet-discord = prev.mx-puppet-discord.override { nodejs_14 = final.nodejs_18; };
 | 
					                mx-puppet-discord = prev.mx-puppet-discord.override { nodejs_14 = final.nodejs_18; };
 | 
				
			||||||
              })
 | 
					              })
 | 
				
			||||||
              pvv-calendar-bot.overlays.${system}.default
 | 
					              inputs.pvv-calendar-bot.overlays.${system}.default
 | 
				
			||||||
            ];
 | 
					            ];
 | 
				
			||||||
          };
 | 
					          };
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
@@ -65,18 +69,27 @@
 | 
				
			|||||||
      );
 | 
					      );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      stableNixosConfig = nixosConfig nixpkgs;
 | 
					      stableNixosConfig = nixosConfig nixpkgs;
 | 
				
			||||||
      unstableNixosConfig = nixosConfig unstable;
 | 
					      unstableNixosConfig = nixosConfig nixpkgs-unstable;
 | 
				
			||||||
    in {
 | 
					    in {
 | 
				
			||||||
      bicep = stableNixosConfig "bicep" {
 | 
					      bicep = stableNixosConfig "bicep" {
 | 
				
			||||||
        modules = [
 | 
					        modules = [
 | 
				
			||||||
          ./hosts/bicep/configuration.nix
 | 
					          ./hosts/bicep/configuration.nix
 | 
				
			||||||
          sops-nix.nixosModules.sops
 | 
					          sops-nix.nixosModules.sops
 | 
				
			||||||
 | 
					
 | 
				
			||||||
          matrix-next.nixosModules.default
 | 
					          inputs.matrix-next.nixosModules.default
 | 
				
			||||||
          pvv-calendar-bot.nixosModules.default
 | 
					          inputs.pvv-calendar-bot.nixosModules.default
 | 
				
			||||||
        ];
 | 
					        ];
 | 
				
			||||||
      };
 | 
					      };
 | 
				
			||||||
      bekkalokk = stableNixosConfig "bekkalokk" { };
 | 
					      bekkalokk = stableNixosConfig "bekkalokk" { };
 | 
				
			||||||
 | 
					      bob = stableNixosConfig "bob" {
 | 
				
			||||||
 | 
					        modules = [
 | 
				
			||||||
 | 
					          ./hosts/bob/configuration.nix
 | 
				
			||||||
 | 
					          sops-nix.nixosModules.sops
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					          disko.nixosModules.disko
 | 
				
			||||||
 | 
					          { disko.devices.disk.disk1.device = "/dev/vda"; }
 | 
				
			||||||
 | 
					        ];
 | 
				
			||||||
 | 
					      };
 | 
				
			||||||
      ildkule = stableNixosConfig "ildkule" { };
 | 
					      ildkule = stableNixosConfig "ildkule" { };
 | 
				
			||||||
      #ildkule-unstable = unstableNixosConfig "ildkule" { };
 | 
					      #ildkule-unstable = unstableNixosConfig "ildkule" { };
 | 
				
			||||||
      shark = stableNixosConfig "shark" { };
 | 
					      shark = stableNixosConfig "shark" { };
 | 
				
			||||||
@@ -99,17 +112,9 @@
 | 
				
			|||||||
          inputs.grzegorz-clients.nixosModules.grzegorz-webui
 | 
					          inputs.grzegorz-clients.nixosModules.grzegorz-webui
 | 
				
			||||||
        ];
 | 
					        ];
 | 
				
			||||||
      };
 | 
					      };
 | 
				
			||||||
 | 
					      buskerud = stableNixosConfig "buskerud" {
 | 
				
			||||||
      grevling = stableNixosConfig "grevling" {
 | 
					 | 
				
			||||||
        modules = [
 | 
					        modules = [
 | 
				
			||||||
          ./hosts/grevling/configuration.nix
 | 
					          ./hosts/buskerud/configuration.nix
 | 
				
			||||||
          sops-nix.nixosModules.sops
 | 
					 | 
				
			||||||
        ];
 | 
					 | 
				
			||||||
      };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      tuba = stableNixosConfig "grevling" {
 | 
					 | 
				
			||||||
        modules = [
 | 
					 | 
				
			||||||
          ./hosts/tuba/configuration.nix
 | 
					 | 
				
			||||||
          sops-nix.nixosModules.sops
 | 
					          sops-nix.nixosModules.sops
 | 
				
			||||||
        ];
 | 
					        ];
 | 
				
			||||||
      };
 | 
					      };
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,7 +5,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    ../../base.nix
 | 
					    ../../base.nix
 | 
				
			||||||
    ../../misc/metrics-exporters.nix
 | 
					    ../../misc/metrics-exporters.nix
 | 
				
			||||||
    ../../modules/wackattack-ctf-stockfish
 | 
					    ../../modules/kerberos_auth.nix
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    #./services/keycloak.nix
 | 
					    #./services/keycloak.nix
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -13,6 +13,7 @@
 | 
				
			|||||||
    # ./services/website.nix
 | 
					    # ./services/website.nix
 | 
				
			||||||
    ./services/nginx.nix
 | 
					    ./services/nginx.nix
 | 
				
			||||||
    ./services/gitea/default.nix
 | 
					    ./services/gitea/default.nix
 | 
				
			||||||
 | 
					    ./services/webmail
 | 
				
			||||||
    # ./services/mediawiki.nix
 | 
					    # ./services/mediawiki.nix
 | 
				
			||||||
  ];
 | 
					  ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										15
									
								
								hosts/bekkalokk/services/webmail/default.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								hosts/bekkalokk/services/webmail/default.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,15 @@
 | 
				
			|||||||
 | 
					{ config, values, pkgs, lib, ... }:
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  imports = [
 | 
				
			||||||
 | 
					    ./roundcube.nix
 | 
				
			||||||
 | 
					  ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  services.nginx.virtualHosts."webmail2.pvv.ntnu.no" = {
 | 
				
			||||||
 | 
					    forceSSL = true;
 | 
				
			||||||
 | 
					    enableACME = true;
 | 
				
			||||||
 | 
					    #locations."/" = lib.mkForce { };
 | 
				
			||||||
 | 
					    locations."= /" = {
 | 
				
			||||||
 | 
					      return = "301 https://www.pvv.ntnu.no/mail/";
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										74
									
								
								hosts/bekkalokk/services/webmail/roundcube.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										74
									
								
								hosts/bekkalokk/services/webmail/roundcube.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,74 @@
 | 
				
			|||||||
 | 
					{ config, pkgs, lib, ... }:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					with lib;
 | 
				
			||||||
 | 
					let
 | 
				
			||||||
 | 
					  cfg = config.services.roundcube;
 | 
				
			||||||
 | 
					  domain = "webmail2.pvv.ntnu.no";
 | 
				
			||||||
 | 
					in 
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  services.roundcube = {
 | 
				
			||||||
 | 
					    enable = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    package = pkgs.roundcube.withPlugins (plugins: with plugins; [
 | 
				
			||||||
 | 
					      persistent_login
 | 
				
			||||||
 | 
					      thunderbird_labels
 | 
				
			||||||
 | 
					      contextmenu
 | 
				
			||||||
 | 
					      custom_from
 | 
				
			||||||
 | 
					    ]);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    dicts = with pkgs.aspellDicts; [ en en-science en-computers nb nn fr de it ];
 | 
				
			||||||
 | 
					    maxAttachmentSize = 20;
 | 
				
			||||||
 | 
					    hostName = "roundcubeplaceholder.example.com";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    extraConfig = ''
 | 
				
			||||||
 | 
					      $config['enable_installer'] = false;
 | 
				
			||||||
 | 
					      $config['default_host'] = "ssl://imap.pvv.ntnu.no";
 | 
				
			||||||
 | 
					      $config['default_port'] = 993;
 | 
				
			||||||
 | 
					      $config['smtp_server'] = "ssl://smtp.pvv.ntnu.no";
 | 
				
			||||||
 | 
					      $config['smtp_port'] = 465;
 | 
				
			||||||
 | 
					      $config['mail_domain'] = "pvv.ntnu.no";
 | 
				
			||||||
 | 
					      $config['smtp_user'] = "%u";
 | 
				
			||||||
 | 
					      $config['support_url'] = "";
 | 
				
			||||||
 | 
					    '';
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  services.nginx.virtualHosts."roundcubeplaceholder.example.com" = lib.mkForce { };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  services.nginx.virtualHosts.${domain} = {
 | 
				
			||||||
 | 
					    locations."/roundcube" = {
 | 
				
			||||||
 | 
					      tryFiles = "$uri $uri/ =404";
 | 
				
			||||||
 | 
					      index = "index.php";
 | 
				
			||||||
 | 
					      root = pkgs.runCommandLocal "roundcube-dir" { } ''
 | 
				
			||||||
 | 
					        mkdir -p $out
 | 
				
			||||||
 | 
					        ln -s ${cfg.package} $out/roundcube
 | 
				
			||||||
 | 
					      '';
 | 
				
			||||||
 | 
					      extraConfig = ''
 | 
				
			||||||
 | 
					        location ~ ^/roundcube/(${builtins.concatStringsSep "|" [
 | 
				
			||||||
 | 
					        # https://wiki.archlinux.org/title/Roundcube
 | 
				
			||||||
 | 
					        "README"
 | 
				
			||||||
 | 
					        "INSTALL"
 | 
				
			||||||
 | 
					        "LICENSE"
 | 
				
			||||||
 | 
					        "CHANGELOG"
 | 
				
			||||||
 | 
					        "UPGRADING"
 | 
				
			||||||
 | 
					        "bin"
 | 
				
			||||||
 | 
					        "SQL"
 | 
				
			||||||
 | 
					        ".+\\.md"
 | 
				
			||||||
 | 
					        "\\."
 | 
				
			||||||
 | 
					        "config"
 | 
				
			||||||
 | 
					        "temp"
 | 
				
			||||||
 | 
					        "logs"
 | 
				
			||||||
 | 
					        ]})/? {
 | 
				
			||||||
 | 
					          deny all;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        location ~ ^/roundcube/(.+\.php)(/?.*)$ {
 | 
				
			||||||
 | 
					          fastcgi_split_path_info ^/roundcube(/.+\.php)(/.+)$;
 | 
				
			||||||
 | 
					          include ${config.services.nginx.package}/conf/fastcgi_params;
 | 
				
			||||||
 | 
					          include ${config.services.nginx.package}/conf/fastcgi.conf;
 | 
				
			||||||
 | 
					          fastcgi_index index.php;
 | 
				
			||||||
 | 
					          fastcgi_pass unix:${config.services.phpfpm.pools.roundcube.socket};
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					      '';
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -5,6 +5,7 @@ from smtplib import SMTP_SSL as SMTP
 | 
				
			|||||||
import synapse
 | 
					import synapse
 | 
				
			||||||
from synapse import module_api
 | 
					from synapse import module_api
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import re
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class SMTPAuthProvider:
 | 
					class SMTPAuthProvider:
 | 
				
			||||||
    def __init__(self, config: dict, api: module_api):
 | 
					    def __init__(self, config: dict, api: module_api):
 | 
				
			||||||
@@ -27,6 +28,10 @@ class SMTPAuthProvider:
 | 
				
			|||||||
        if login_type != "m.login.password":
 | 
					        if login_type != "m.login.password":
 | 
				
			||||||
            return None
 | 
					            return None
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        # Convert `@username:server` to `username`
 | 
				
			||||||
 | 
					        match = re.match(r'^@([\da-z\-\.=_\/\+]+):[\w\d\.:\[\]]+$', username)
 | 
				
			||||||
 | 
					        username = match.group(1) if match else username
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        result = False
 | 
					        result = False
 | 
				
			||||||
        with SMTP(self.config["smtp_host"]) as smtp:
 | 
					        with SMTP(self.config["smtp_host"]) as smtp:
 | 
				
			||||||
            password = login_dict.get("password")
 | 
					            password = login_dict.get("password")
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -216,7 +216,19 @@ in {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  services.redis.servers."".enable = true;
 | 
					  services.redis.servers."".enable = true;
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
  services.nginx.virtualHosts."matrix.pvv.ntnu.no" = lib.mkMerge [({
 | 
					  services.nginx.virtualHosts."matrix.pvv.ntnu.no" = lib.mkMerge [
 | 
				
			||||||
 | 
					  ({
 | 
				
			||||||
 | 
					    locations."/.well-known/matrix/server" = {
 | 
				
			||||||
 | 
					      return = ''
 | 
				
			||||||
 | 
					        200 '{"m.server": "matrix.pvv.ntnu.no:443"}'
 | 
				
			||||||
 | 
					      '';
 | 
				
			||||||
 | 
					      extraConfig = ''
 | 
				
			||||||
 | 
					        default_type application/json;
 | 
				
			||||||
 | 
					        add_header Access-Control-Allow-Origin *;
 | 
				
			||||||
 | 
					      '';
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					  })
 | 
				
			||||||
 | 
					  ({
 | 
				
			||||||
    locations = let
 | 
					    locations = let
 | 
				
			||||||
      connectionInfo = w: matrix-lib.workerConnectionResource "metrics" w;
 | 
					      connectionInfo = w: matrix-lib.workerConnectionResource "metrics" w;
 | 
				
			||||||
      socketAddress = w: let c = connectionInfo w; in "${c.host}:${toString (c.port)}";
 | 
					      socketAddress = w: let c = connectionInfo w; in "${c.host}:${toString (c.port)}";
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,19 +5,29 @@
 | 
				
			|||||||
      ./hardware-configuration.nix
 | 
					      ./hardware-configuration.nix
 | 
				
			||||||
      ../../base.nix
 | 
					      ../../base.nix
 | 
				
			||||||
      ../../misc/metrics-exporters.nix
 | 
					      ../../misc/metrics-exporters.nix
 | 
				
			||||||
 | 
					      ./disks.nix
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      ./services/openvpn
 | 
					      ../../misc/builder.nix
 | 
				
			||||||
    ];
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  boot.loader.systemd-boot.enable = true;
 | 
					  sops.defaultSopsFile = ../../secrets/bob/bob.yaml;
 | 
				
			||||||
  boot.loader.efi.canTouchEfiVariables = true;
 | 
					  sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
 | 
				
			||||||
 | 
					  sops.age.keyFile = "/var/lib/sops-nix/key.txt";
 | 
				
			||||||
 | 
					  sops.age.generateKey = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  networking.hostName = "grevling";
 | 
					  boot.loader.grub = {
 | 
				
			||||||
 | 
					    enable = true;
 | 
				
			||||||
 | 
					    efiSupport = true;
 | 
				
			||||||
 | 
					    efiInstallAsRemovable = true;
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  # systemd.network.networks."30-eno1" = values.defaultNetworkConfig // {
 | 
					  networking.hostName = "bob"; # Define your hostname.
 | 
				
			||||||
  #   matchConfig.Name = "eno1";
 | 
					
 | 
				
			||||||
  #   address = with values.hosts.georg; [ (ipv4 + "/25") (ipv6 + "/64") ];
 | 
					  systemd.network.networks."30-all" = values.defaultNetworkConfig // {
 | 
				
			||||||
  # };
 | 
					    matchConfig.Name = "en*";
 | 
				
			||||||
 | 
					    DHCP = "yes";
 | 
				
			||||||
 | 
					    gateway = [ ];
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  # List packages installed in system profile
 | 
					  # List packages installed in system profile
 | 
				
			||||||
  environment.systemPackages = with pkgs; [
 | 
					  environment.systemPackages = with pkgs; [
 | 
				
			||||||
							
								
								
									
										39
									
								
								hosts/bob/disks.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								hosts/bob/disks.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,39 @@
 | 
				
			|||||||
 | 
					# Example to create a bios compatible gpt partition
 | 
				
			||||||
 | 
					{ lib, ... }:
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  disko.devices = {
 | 
				
			||||||
 | 
					    disk.disk1 = {
 | 
				
			||||||
 | 
					      device = lib.mkDefault "/dev/sda";
 | 
				
			||||||
 | 
					      type = "disk";
 | 
				
			||||||
 | 
					      content = {
 | 
				
			||||||
 | 
					        type = "gpt";
 | 
				
			||||||
 | 
					        partitions = {
 | 
				
			||||||
 | 
					          boot = {
 | 
				
			||||||
 | 
					            name = "boot";
 | 
				
			||||||
 | 
					            size = "1M";
 | 
				
			||||||
 | 
					            type = "EF02";
 | 
				
			||||||
 | 
					          };
 | 
				
			||||||
 | 
					          esp = {
 | 
				
			||||||
 | 
					            name = "ESP";
 | 
				
			||||||
 | 
					            size = "500M";
 | 
				
			||||||
 | 
					            type = "EF00";
 | 
				
			||||||
 | 
					            content = {
 | 
				
			||||||
 | 
					              type = "filesystem";
 | 
				
			||||||
 | 
					              format = "vfat";
 | 
				
			||||||
 | 
					              mountpoint = "/boot";
 | 
				
			||||||
 | 
					            };
 | 
				
			||||||
 | 
					          };
 | 
				
			||||||
 | 
					          root = {
 | 
				
			||||||
 | 
					            name = "root";
 | 
				
			||||||
 | 
					            size = "100%";
 | 
				
			||||||
 | 
					            content = {
 | 
				
			||||||
 | 
					              type = "filesystem";
 | 
				
			||||||
 | 
					              format = "ext4";
 | 
				
			||||||
 | 
					              mountpoint = "/";
 | 
				
			||||||
 | 
					            };
 | 
				
			||||||
 | 
					          };
 | 
				
			||||||
 | 
					        };
 | 
				
			||||||
 | 
					      };
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -5,36 +5,20 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
  imports =
 | 
					  imports =
 | 
				
			||||||
    [ (modulesPath + "/installer/scan/not-detected.nix")
 | 
					    [ (modulesPath + "/profiles/qemu-guest.nix")
 | 
				
			||||||
    ];
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
 | 
					  boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_blk" ];
 | 
				
			||||||
  boot.initrd.kernelModules = [ ];
 | 
					  boot.initrd.kernelModules = [ ];
 | 
				
			||||||
  boot.kernelModules = [ "kvm-intel" ];
 | 
					  boot.kernelModules = [ ];
 | 
				
			||||||
  boot.extraModulePackages = [ ];
 | 
					  boot.extraModulePackages = [ ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fileSystems."/" =
 | 
					 | 
				
			||||||
    { device = "/dev/disk/by-uuid/33825f0d-5a63-40fc-83db-bfa1ebb72ba0";
 | 
					 | 
				
			||||||
      fsType = "ext4";
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  fileSystems."/boot" =
 | 
					 | 
				
			||||||
    { device = "/dev/disk/by-uuid/145E-7362";
 | 
					 | 
				
			||||||
      fsType = "vfat";
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  swapDevices =
 | 
					 | 
				
			||||||
    [ { device = "/dev/disk/by-uuid/7ed27e21-3247-44cd-8bcc-5d4a2efebf57"; }
 | 
					 | 
				
			||||||
    ];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
 | 
					  # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
 | 
				
			||||||
  # (the default) this is the recommended approach. When using systemd-networkd it's
 | 
					  # (the default) this is the recommended approach. When using systemd-networkd it's
 | 
				
			||||||
  # still possible to use this option, but it's recommended to use it in conjunction
 | 
					  # still possible to use this option, but it's recommended to use it in conjunction
 | 
				
			||||||
  # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
 | 
					  # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
 | 
				
			||||||
  networking.useDHCP = lib.mkDefault true;
 | 
					  networking.useDHCP = lib.mkDefault true;
 | 
				
			||||||
  # networking.interfaces.eno1.useDHCP = lib.mkDefault true;
 | 
					  # networking.interfaces.ens3.useDHCP = lib.mkDefault true;
 | 
				
			||||||
  # networking.interfaces.enp2s2.useDHCP = lib.mkDefault true;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
 | 
					  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
 | 
				
			||||||
  hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -6,7 +6,7 @@
 | 
				
			|||||||
      ../../base.nix
 | 
					      ../../base.nix
 | 
				
			||||||
      ../../misc/metrics-exporters.nix
 | 
					      ../../misc/metrics-exporters.nix
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      ../../modules/grzegorz.nix
 | 
					      ./services/grzegorz.nix
 | 
				
			||||||
    ];
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  boot.loader.systemd-boot.enable = true;
 | 
					  boot.loader.systemd-boot.enable = true;
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										11
									
								
								hosts/brzeczyszczykiewicz/services/grzegorz.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								hosts/brzeczyszczykiewicz/services/grzegorz.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
				
			|||||||
 | 
					{ config, ... }:
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  imports = [ ../../../modules/grzegorz.nix ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  services.nginx.virtualHosts."${config.networking.fqdn}" = {
 | 
				
			||||||
 | 
					    serverAliases = [
 | 
				
			||||||
 | 
					      "bokhylle.pvv.ntnu.no"
 | 
				
			||||||
 | 
					      "bokhylle.pvv.org"
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										50
									
								
								hosts/buskerud/configuration.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								hosts/buskerud/configuration.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,50 @@
 | 
				
			|||||||
 | 
					{ config, pkgs, values, ... }:
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  imports = [
 | 
				
			||||||
 | 
					      # Include the results of the hardware scan.
 | 
				
			||||||
 | 
					      ./hardware-configuration.nix
 | 
				
			||||||
 | 
					      ../../base.nix
 | 
				
			||||||
 | 
					      ../../misc/metrics-exporters.nix
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      ./services/openvpn-client.nix
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  # buskerud does not support efi?
 | 
				
			||||||
 | 
					  # boot.loader.systemd-boot.enable = true;
 | 
				
			||||||
 | 
					  # boot.loader.efi.canTouchEfiVariables = true;
 | 
				
			||||||
 | 
					  boot.loader.grub.enable = true;
 | 
				
			||||||
 | 
					  boot.loader.grub.device = "/dev/sda";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  networking.hostName = "buskerud";
 | 
				
			||||||
 | 
					  networking.search = [ "pvv.ntnu.no" "pvv.org" ];
 | 
				
			||||||
 | 
					  networking.nameservers = [ "129.241.0.200" "129.241.0.201" ];
 | 
				
			||||||
 | 
					  networking.tempAddresses = "disabled";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  systemd.network.networks."enp3s0f0" = values.defaultNetworkConfig // {
 | 
				
			||||||
 | 
					    matchConfig.Name = "enp3s0f0";
 | 
				
			||||||
 | 
					    address = with values.hosts.buskerud; [ (ipv4 + "/25") (ipv6 + "/64") ];
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  # Buskerud should use the default gateway received from DHCP
 | 
				
			||||||
 | 
					  networking.interfaces.enp14s0f1.useDHCP = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  # networking.interfaces.tun = {
 | 
				
			||||||
 | 
					  #   virtual = true;
 | 
				
			||||||
 | 
					  #   ipv4.adresses = [ {address="129.241.210.252"; prefixLength=25; } ];
 | 
				
			||||||
 | 
					  # };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  # List packages installed in system profile
 | 
				
			||||||
 | 
					  environment.systemPackages = with pkgs; [
 | 
				
			||||||
 | 
					  ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  # List services that you want to enable:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  # This value determines the NixOS release from which the default
 | 
				
			||||||
 | 
					  # settings for stateful data, like file locations and database versions
 | 
				
			||||||
 | 
					  # on your system were taken. It‘s perfectly fine and recommended to leave
 | 
				
			||||||
 | 
					  # 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 = "23.05"; # Did you read the comment?
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -8,32 +8,29 @@
 | 
				
			|||||||
    [ (modulesPath + "/installer/scan/not-detected.nix")
 | 
					    [ (modulesPath + "/installer/scan/not-detected.nix")
 | 
				
			||||||
    ];
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
 | 
					  boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ata_piix" "hpsa" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
 | 
				
			||||||
  boot.initrd.kernelModules = [ ];
 | 
					  boot.initrd.kernelModules = [ ];
 | 
				
			||||||
  boot.kernelModules = [ "kvm-intel" ];
 | 
					  boot.kernelModules = [ "kvm-intel" ];
 | 
				
			||||||
  boot.extraModulePackages = [ ];
 | 
					  boot.extraModulePackages = [ ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fileSystems."/" =
 | 
					  fileSystems."/" =
 | 
				
			||||||
    { device = "/dev/disk/by-uuid/33825f0d-5a63-40fc-83db-bfa1ebb72ba0";
 | 
					    { device = "/dev/disk/by-uuid/ed9654fe-575a-4fb3-b6ff-1b059479acff";
 | 
				
			||||||
      fsType = "ext4";
 | 
					      fsType = "ext4";
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  fileSystems."/boot" =
 | 
					  swapDevices = [ ];
 | 
				
			||||||
    { device = "/dev/disk/by-uuid/145E-7362";
 | 
					 | 
				
			||||||
      fsType = "vfat";
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  swapDevices =
 | 
					 | 
				
			||||||
    [ { device = "/dev/disk/by-uuid/7ed27e21-3247-44cd-8bcc-5d4a2efebf57"; }
 | 
					 | 
				
			||||||
    ];
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
  # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
 | 
					  # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
 | 
				
			||||||
  # (the default) this is the recommended approach. When using systemd-networkd it's
 | 
					  # (the default) this is the recommended approach. When using systemd-networkd it's
 | 
				
			||||||
  # still possible to use this option, but it's recommended to use it in conjunction
 | 
					  # still possible to use this option, but it's recommended to use it in conjunction
 | 
				
			||||||
  # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
 | 
					  # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
 | 
				
			||||||
  networking.useDHCP = lib.mkDefault true;
 | 
					  networking.useDHCP = lib.mkDefault true;
 | 
				
			||||||
  # networking.interfaces.eno1.useDHCP = lib.mkDefault true;
 | 
					  # networking.interfaces.enp14s0f0.useDHCP = lib.mkDefault true;
 | 
				
			||||||
  # networking.interfaces.enp2s2.useDHCP = lib.mkDefault true;
 | 
					  # networking.interfaces.enp14s0f1.useDHCP = lib.mkDefault true;
 | 
				
			||||||
 | 
					  # networking.interfaces.enp3s0f0.useDHCP = lib.mkDefault true;
 | 
				
			||||||
 | 
					  # networking.interfaces.enp3s0f1.useDHCP = lib.mkDefault true;
 | 
				
			||||||
 | 
					  # networking.interfaces.enp4s0f0.useDHCP = lib.mkDefault true;
 | 
				
			||||||
 | 
					  # networking.interfaces.enp4s0f1.useDHCP = lib.mkDefault true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
 | 
					  nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
 | 
				
			||||||
  hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
 | 
					  hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
 | 
				
			||||||
							
								
								
									
										109
									
								
								hosts/buskerud/services/openvpn-client.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										109
									
								
								hosts/buskerud/services/openvpn-client.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,109 @@
 | 
				
			|||||||
 | 
					{ lib, values, ... }:
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  services.openvpn.servers."ov-tunnel" = {
 | 
				
			||||||
 | 
					    config = let
 | 
				
			||||||
 | 
					      conf = {
 | 
				
			||||||
 | 
					        # TODO: use aliases
 | 
				
			||||||
 | 
					        client = true;
 | 
				
			||||||
 | 
					        dev = "tap";
 | 
				
			||||||
 | 
					        proto = "udp";
 | 
				
			||||||
 | 
					        #remote = "129.241.210.253 1194";
 | 
				
			||||||
 | 
					        remote = "129.241.210.191 1194";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        resolv-retry = "infinite";
 | 
				
			||||||
 | 
					        nobind = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        ca = "/etc/openvpn/ca.pem";
 | 
				
			||||||
 | 
					        cert = "/etc/openvpn/crt.pem";
 | 
				
			||||||
 | 
					        key = "/etc/openvpn/key.pem";
 | 
				
			||||||
 | 
					        remote-cert-tls = "server";
 | 
				
			||||||
 | 
					        cipher = "none";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        user = "nobody";
 | 
				
			||||||
 | 
					        group = "nobody";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        status = "/var/log/openvpn-status.log";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        persist-key = true;
 | 
				
			||||||
 | 
					        persist-tun = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        verb = 5;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        # script-security = 2;
 | 
				
			||||||
 | 
					        # up = "systemctl restart rwhod";
 | 
				
			||||||
 | 
					      };
 | 
				
			||||||
 | 
					    in lib.pipe conf [
 | 
				
			||||||
 | 
					      (lib.filterAttrs (_: value: !(builtins.isNull value || value == false)))
 | 
				
			||||||
 | 
					      (builtins.mapAttrs (_: value:
 | 
				
			||||||
 | 
					        if builtins.isList value then builtins.concatStringsSep " " (map toString value)
 | 
				
			||||||
 | 
					        else if value == true then value
 | 
				
			||||||
 | 
					        else if builtins.any (f: f value) [
 | 
				
			||||||
 | 
					          builtins.isString
 | 
				
			||||||
 | 
					          builtins.isInt
 | 
				
			||||||
 | 
					          builtins.isFloat
 | 
				
			||||||
 | 
					          lib.isPath
 | 
				
			||||||
 | 
					          lib.isDerivation
 | 
				
			||||||
 | 
					        ] then toString value
 | 
				
			||||||
 | 
					        else throw "Unknown value in buskerud openvpn config, deading now\n${value}"
 | 
				
			||||||
 | 
					      ))
 | 
				
			||||||
 | 
					      (lib.mapAttrsToList (name: value: if value == true then name else "${name} ${value}"))
 | 
				
			||||||
 | 
					      (builtins.concatStringsSep "\n")
 | 
				
			||||||
 | 
					      (x: x + "\n\n")
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  systemd.network.networks."enp14s0f1" = {
 | 
				
			||||||
 | 
					    matchConfig.Name = "enp14s0f1";
 | 
				
			||||||
 | 
					    networkConfig = {
 | 
				
			||||||
 | 
					      DefaultRouteOnDevice = true;
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					    routes = [
 | 
				
			||||||
 | 
					      { routeConfig = {
 | 
				
			||||||
 | 
					          Type = "unicast";
 | 
				
			||||||
 | 
					          Destination = values.hosts.knutsen.ipv4 + "/32";
 | 
				
			||||||
 | 
					          Metric = 50;
 | 
				
			||||||
 | 
					        };
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  systemd.network.netdevs."br0" = {
 | 
				
			||||||
 | 
					    netdevConfig = {
 | 
				
			||||||
 | 
					      Kind = "bridge";
 | 
				
			||||||
 | 
					      Name = "br0";
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  systemd.network.networks."br0" = {
 | 
				
			||||||
 | 
					    matchConfig.Name = "br0";
 | 
				
			||||||
 | 
					    routes = [
 | 
				
			||||||
 | 
					      { routeConfig = {
 | 
				
			||||||
 | 
					          Type = "unicast";
 | 
				
			||||||
 | 
					          Destination = values.ipv4-space;
 | 
				
			||||||
 | 
					          Metric = 100;
 | 
				
			||||||
 | 
					        };
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  systemd.network.networks."enp3s0f0" = {
 | 
				
			||||||
 | 
					    matchConfig.Name = "enp3s0f0";
 | 
				
			||||||
 | 
					    networkConfig.DefaultRouteOnDevice = false;
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  systemd.network.networks."enp3s0f1" = {
 | 
				
			||||||
 | 
					    matchConfig.Name = "enp3s0f1";
 | 
				
			||||||
 | 
					    bridge = [ "br0" ];
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  systemd.network.networks."tap0" = {
 | 
				
			||||||
 | 
					    matchConfig.Name = "tap0";
 | 
				
			||||||
 | 
					    bridge = [ "br0" ];
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  #networking.nat = {
 | 
				
			||||||
 | 
					  #  enable = true;
 | 
				
			||||||
 | 
					  #  externalInterface = "enp14s0f1";
 | 
				
			||||||
 | 
					  #  internalInterfaces  = [ "tun" ];
 | 
				
			||||||
 | 
					  #};
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -1,77 +0,0 @@
 | 
				
			|||||||
{ pkgs, lib, values, ... }:
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
  services.openvpn.servers."ov-tunnel" = {
 | 
					 | 
				
			||||||
    config = let
 | 
					 | 
				
			||||||
      conf = {
 | 
					 | 
				
			||||||
        # TODO: use aliases
 | 
					 | 
				
			||||||
        local = "129.241.210.191";
 | 
					 | 
				
			||||||
        port = 1194;
 | 
					 | 
				
			||||||
        proto = "udp";
 | 
					 | 
				
			||||||
        dev = "tap";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        # TODO: set up
 | 
					 | 
				
			||||||
        ca = "";
 | 
					 | 
				
			||||||
        cert = "";
 | 
					 | 
				
			||||||
        key = "";
 | 
					 | 
				
			||||||
        dh = "";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        # Maintain a record of client <-> virtual IP address
 | 
					 | 
				
			||||||
        # associations in this file.  If OpenVPN goes down or
 | 
					 | 
				
			||||||
        # is restarted, reconnecting clients can be assigned
 | 
					 | 
				
			||||||
        # the same virtual IP address from the pool that was
 | 
					 | 
				
			||||||
        # previously assigned.
 | 
					 | 
				
			||||||
        ifconfig-pool-persist = ./ipp.txt;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        server-bridge = builtins.concatStringsSep " " [
 | 
					 | 
				
			||||||
          "129.241.210.129"
 | 
					 | 
				
			||||||
          "255.255.255.128"
 | 
					 | 
				
			||||||
          "129.241.210.253"
 | 
					 | 
				
			||||||
          "129.241.210.254"
 | 
					 | 
				
			||||||
        ];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        keepalive = "10 120";
 | 
					 | 
				
			||||||
        cipher = "none";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        user = "nobody";
 | 
					 | 
				
			||||||
        group = "nobody";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        status = "/var/log/openvpn-status.log";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        client-config-dir = pkgs.writeTextDir "tuba" ''
 | 
					 | 
				
			||||||
          # Sett IP-adr. for tap0 til tubas PVV-adr.
 | 
					 | 
				
			||||||
          ifconfig-push ${values.services.tuba-tap} 255.255.255.128
 | 
					 | 
				
			||||||
          # Hvordan skal man faa dette til aa funke, tro?
 | 
					 | 
				
			||||||
          #ifconfig-ipv6-push 2001:700:300:1900::xxx/64
 | 
					 | 
				
			||||||
          
 | 
					 | 
				
			||||||
          # La tuba bruke std. PVV-gateway til all trafikk (unntatt
 | 
					 | 
				
			||||||
          # VPN-tunnellen).
 | 
					 | 
				
			||||||
          push "redirect-gateway"
 | 
					 | 
				
			||||||
        '';
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        persist-key = true;
 | 
					 | 
				
			||||||
        persist-tun = true;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        verb = 5;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        explicit-exit-notify = 1;
 | 
					 | 
				
			||||||
      };
 | 
					 | 
				
			||||||
    in lib.pipe conf [
 | 
					 | 
				
			||||||
      (lib.filterAttrs (_: value: !(builtins.isNull value || value == false)))
 | 
					 | 
				
			||||||
      (builtins.mapAttrs (_: value:
 | 
					 | 
				
			||||||
        if builtins.isList value then builtins.concatStringsSep " " (map toString value)
 | 
					 | 
				
			||||||
        else if value == true then value
 | 
					 | 
				
			||||||
        else if builtins.any (f: f value) [
 | 
					 | 
				
			||||||
          builtins.isString
 | 
					 | 
				
			||||||
          builtins.isInt
 | 
					 | 
				
			||||||
          builtins.isFloat
 | 
					 | 
				
			||||||
          lib.isPath
 | 
					 | 
				
			||||||
          lib.isDerivation
 | 
					 | 
				
			||||||
        ] then toString value
 | 
					 | 
				
			||||||
        else throw "Unknown value in grevling openvpn config, deading now\n${value}"
 | 
					 | 
				
			||||||
      ))
 | 
					 | 
				
			||||||
      (lib.mapAttrsToList (name: value: if value == true then name else "${name} ${value}"))
 | 
					 | 
				
			||||||
      (builtins.concatStringsSep "\n")
 | 
					 | 
				
			||||||
      (x: x + "\n\n")
 | 
					 | 
				
			||||||
    ];
 | 
					 | 
				
			||||||
  };
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -1,4 +1,4 @@
 | 
				
			|||||||
{ config, unstable, ... }: let
 | 
					{ config, ... }: let
 | 
				
			||||||
  cfg = config.services.prometheus;
 | 
					  cfg = config.services.prometheus;
 | 
				
			||||||
in {
 | 
					in {
 | 
				
			||||||
  sops.secrets."config/mysqld_exporter" = { };
 | 
					  sops.secrets."config/mysqld_exporter" = { };
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,36 +0,0 @@
 | 
				
			|||||||
{ config, pkgs, values, ... }:
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
  imports = [
 | 
					 | 
				
			||||||
      # Include the results of the hardware scan.
 | 
					 | 
				
			||||||
      ./hardware-configuration.nix
 | 
					 | 
				
			||||||
      ../../base.nix
 | 
					 | 
				
			||||||
      ../../misc/metrics-exporters.nix
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      ./services/openvpn
 | 
					 | 
				
			||||||
    ];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  boot.loader.systemd-boot.enable = true;
 | 
					 | 
				
			||||||
  boot.loader.efi.canTouchEfiVariables = true;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  networking.hostName = "tuba";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  # systemd.network.networks."30-eno1" = values.defaultNetworkConfig // {
 | 
					 | 
				
			||||||
  #   matchConfig.Name = "eno1";
 | 
					 | 
				
			||||||
  #   address = with values.hosts.georg; [ (ipv4 + "/25") (ipv6 + "/64") ];
 | 
					 | 
				
			||||||
  # };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  # List packages installed in system profile
 | 
					 | 
				
			||||||
  environment.systemPackages = with pkgs; [
 | 
					 | 
				
			||||||
  ];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  # List services that you want to enable:
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  # This value determines the NixOS release from which the default
 | 
					 | 
				
			||||||
  # settings for stateful data, like file locations and database versions
 | 
					 | 
				
			||||||
  # on your system were taken. It‘s perfectly fine and recommended to leave
 | 
					 | 
				
			||||||
  # 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 = "23.05"; # Did you read the comment?
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -1,54 +0,0 @@
 | 
				
			|||||||
{ lib, values, ... }:
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
  services.openvpn.servers."ov-tunnel" = {
 | 
					 | 
				
			||||||
    config = let
 | 
					 | 
				
			||||||
      conf = {
 | 
					 | 
				
			||||||
        # TODO: use aliases
 | 
					 | 
				
			||||||
        client = true;
 | 
					 | 
				
			||||||
        dev = "tap";
 | 
					 | 
				
			||||||
        proto = "udp";
 | 
					 | 
				
			||||||
        remote = "129.241.210.191 1194";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        resolv-retry = "infinite";
 | 
					 | 
				
			||||||
        nobind = true;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        # # TODO: set up
 | 
					 | 
				
			||||||
        ca = "";
 | 
					 | 
				
			||||||
        cert = "";
 | 
					 | 
				
			||||||
        key = "";
 | 
					 | 
				
			||||||
        remote-cert-tls = "server";
 | 
					 | 
				
			||||||
        cipher = "none";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        user = "nobody";
 | 
					 | 
				
			||||||
        group = "nobody";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        status = "/var/log/openvpn-status.log";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        persist-key = true;
 | 
					 | 
				
			||||||
        persist-tun = true;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        verb = 5;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        # script-security = 2;
 | 
					 | 
				
			||||||
        # up = "systemctl restart rwhod";
 | 
					 | 
				
			||||||
      };
 | 
					 | 
				
			||||||
    in lib.pipe conf [
 | 
					 | 
				
			||||||
      (lib.filterAttrs (_: value: !(builtins.isNull value || value == false)))
 | 
					 | 
				
			||||||
      (builtins.mapAttrs (_: value:
 | 
					 | 
				
			||||||
        if builtins.isList value then builtins.concatStringsSep " " (map toString value)
 | 
					 | 
				
			||||||
        else if value == true then value
 | 
					 | 
				
			||||||
        else if builtins.any (f: f value) [
 | 
					 | 
				
			||||||
          builtins.isString
 | 
					 | 
				
			||||||
          builtins.isInt
 | 
					 | 
				
			||||||
          builtins.isFloat
 | 
					 | 
				
			||||||
          lib.isPath
 | 
					 | 
				
			||||||
          lib.isDerivation
 | 
					 | 
				
			||||||
        ] then toString value
 | 
					 | 
				
			||||||
        else throw "Unknown value in tuba openvpn config, deading now\n${value}"
 | 
					 | 
				
			||||||
      ))
 | 
					 | 
				
			||||||
      (lib.mapAttrsToList (name: value: if value == true then name else "${name} ${value}"))
 | 
					 | 
				
			||||||
      (builtins.concatStringsSep "\n")
 | 
					 | 
				
			||||||
      (x: x + "\n\n")
 | 
					 | 
				
			||||||
    ];
 | 
					 | 
				
			||||||
  };
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
							
								
								
									
										5
									
								
								misc/builder.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								misc/builder.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
				
			|||||||
 | 
					{ ... }:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  nix.settings.trusted-users = [ "@nix-builder-users" ];
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										25
									
								
								modules/kerberos_auth.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								modules/kerberos_auth.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,25 @@
 | 
				
			|||||||
 | 
					{ pkgs, lib, ... }:
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  environment.systemPackages = with pkgs; [
 | 
				
			||||||
 | 
					    heimdal
 | 
				
			||||||
 | 
					  ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  security.pam.krb5.enable = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  environment.etc."krb5.conf".text = ''
 | 
				
			||||||
 | 
					    [libdefaults]
 | 
				
			||||||
 | 
					      default_realm = PVV.NTNU.NO
 | 
				
			||||||
 | 
					      dns_lookup_realm = yes
 | 
				
			||||||
 | 
					      dns_lookup_kdc = yes
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    [appdefaults]
 | 
				
			||||||
 | 
					      pam = {
 | 
				
			||||||
 | 
					        ignore_k5login = yes
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    [realms]
 | 
				
			||||||
 | 
					      PVV.NTNU.NO = {
 | 
				
			||||||
 | 
					        admin_server = kdc.pvv.ntnu.no
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					  '';
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -1,74 +0,0 @@
 | 
				
			|||||||
#!/usr/bin/env python3
 | 
					 | 
				
			||||||
from stockfish import *
 | 
					 | 
				
			||||||
from inputimeout import inputimeout
 | 
					 | 
				
			||||||
import time
 | 
					 | 
				
			||||||
from datetime import datetime
 | 
					 | 
				
			||||||
import random
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
thinking_time = 1000
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
game = Stockfish(path="./stockfish", depth=15, parameters={"Threads": 1, "Minimum Thinking Time": thinking_time, "UCI_Chess960": True})
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
def create_random_position():
 | 
					 | 
				
			||||||
    pos = "/pppppppp/8/8/8/8/PPPPPPPP/"
 | 
					 | 
				
			||||||
    rank8 = ["r","r","b","q","k","b","n","n"]
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    while rank8.index("k") < [i for i, n in enumerate(rank8) if n == "r"][0] or rank8.index("k") > [i for i, n in enumerate(rank8) if n == "r"][1] or [i for i, n in enumerate(rank8) if n == "b"][0] % 2 == [i for i, n in enumerate(rank8) if n == "b"][1] % 2:
 | 
					 | 
				
			||||||
        random.seed(datetime.now().microsecond)
 | 
					 | 
				
			||||||
        random.shuffle(rank8)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    rank1 = [c.upper() for c in rank8]
 | 
					 | 
				
			||||||
    pos = "".join(rank8) + pos + "".join(rank1) + " w KQkq - 0 1"
 | 
					 | 
				
			||||||
    game.set_fen_position(pos)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
def player_won():
 | 
					 | 
				
			||||||
    with open("flag.txt") as file:
 | 
					 | 
				
			||||||
        flag = file.read()
 | 
					 | 
				
			||||||
    print(flag)
 | 
					 | 
				
			||||||
    exit()
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
def get_fast_player_move():
 | 
					 | 
				
			||||||
    try:
 | 
					 | 
				
			||||||
        time_over = inputimeout(prompt='Your move: ', timeout=5)
 | 
					 | 
				
			||||||
    except Exception:
 | 
					 | 
				
			||||||
        time_over = 'Too slow, you lost!'
 | 
					 | 
				
			||||||
        print(time_over)
 | 
					 | 
				
			||||||
        exit()
 | 
					 | 
				
			||||||
    return time_over
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
def check_game_status():
 | 
					 | 
				
			||||||
    evaluation = game.get_evaluation()
 | 
					 | 
				
			||||||
    turn = game.get_fen_position().split(" ")[1]
 | 
					 | 
				
			||||||
    if evaluation["type"] == "mate" and evaluation["value"] == 0 and turn == "w":
 | 
					 | 
				
			||||||
        print("Wow, you beat me!")
 | 
					 | 
				
			||||||
        player_won()
 | 
					 | 
				
			||||||
    elif evaluation["type"] == "mate" and evaluation["value"] == 0 and turn == "b":
 | 
					 | 
				
			||||||
        print("Hah, I won again")
 | 
					 | 
				
			||||||
        exit()
 | 
					 | 
				
			||||||
    if evaluation["type"] == "draw":
 | 
					 | 
				
			||||||
        print("It's a draw!")
 | 
					 | 
				
			||||||
        print("Impressive, but I am still undefeated.")
 | 
					 | 
				
			||||||
        exit()
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
if __name__ == "__main__":
 | 
					 | 
				
			||||||
    create_random_position()
 | 
					 | 
				
			||||||
    print("Welcome to fischer chess.\nYou get 5 seconds per move. Good luck")
 | 
					 | 
				
			||||||
    print(game.get_board_visual())
 | 
					 | 
				
			||||||
    print("Heres the position for this game, Ill give you a few seconds to look at it before we start.")
 | 
					 | 
				
			||||||
    time.sleep(3)
 | 
					 | 
				
			||||||
    while True:
 | 
					 | 
				
			||||||
        server_move = game.get_best_move_time(thinking_time)
 | 
					 | 
				
			||||||
        game.make_moves_from_current_position([server_move])
 | 
					 | 
				
			||||||
        check_game_status()
 | 
					 | 
				
			||||||
        print(game.get_board_visual())
 | 
					 | 
				
			||||||
        print(f"My move: {server_move}")
 | 
					 | 
				
			||||||
        player_move = get_fast_player_move()
 | 
					 | 
				
			||||||
        if type(player_move) != str or len([player_move]) != 1:
 | 
					 | 
				
			||||||
            print("Illegal input")
 | 
					 | 
				
			||||||
            exit()
 | 
					 | 
				
			||||||
        try:
 | 
					 | 
				
			||||||
            game.make_moves_from_current_position([player_move])
 | 
					 | 
				
			||||||
            check_game_status()
 | 
					 | 
				
			||||||
        except:
 | 
					 | 
				
			||||||
            print("Couldn't comprehend that")
 | 
					 | 
				
			||||||
            exit()
 | 
					 | 
				
			||||||
@@ -1,108 +0,0 @@
 | 
				
			|||||||
{ config, pkgs, lib, ... }: let
 | 
					 | 
				
			||||||
  stockfish = with pkgs.python3Packages; buildPythonPackage rec {
 | 
					 | 
				
			||||||
    pname = "stockfish";
 | 
					 | 
				
			||||||
    version = "3.28.0";
 | 
					 | 
				
			||||||
    disabled = pythonOlder "3.7";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    src = pkgs.fetchFromGitHub {
 | 
					 | 
				
			||||||
      owner = "zhelyabuzhsky";
 | 
					 | 
				
			||||||
      repo = pname;
 | 
					 | 
				
			||||||
      rev = version;
 | 
					 | 
				
			||||||
      hash = "sha256-XLgVjLV2QXeTYPjP/lwc0LH850LKJsymFlrAMkAn8HU=";
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    format = "setuptools";
 | 
					 | 
				
			||||||
    nativeBuildInputs = [
 | 
					 | 
				
			||||||
      setuptools
 | 
					 | 
				
			||||||
    ];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    propagatedBuildInputs = [
 | 
					 | 
				
			||||||
      pytest-runner
 | 
					 | 
				
			||||||
    ];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    doCheck = false;
 | 
					 | 
				
			||||||
  };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  inputimeout = with pkgs.python3Packages; buildPythonPackage rec {
 | 
					 | 
				
			||||||
    pname = "inputimeout";
 | 
					 | 
				
			||||||
    version = "1.0.4";
 | 
					 | 
				
			||||||
    src = pkgs.fetchFromGitHub {
 | 
					 | 
				
			||||||
      owner = "johejo";
 | 
					 | 
				
			||||||
      repo = pname;
 | 
					 | 
				
			||||||
      rev = "v${version}";
 | 
					 | 
				
			||||||
      hash = "sha256-Fh1CaqJOK58nURt4imkhCmZKG2eJlP/Hi10SarUJ+Fs=";
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    format = "setuptools";
 | 
					 | 
				
			||||||
    nativeBuildInputs = [ setuptools ];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    doCheck = false;
 | 
					 | 
				
			||||||
  };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  script = pkgs.writers.writePython3 "chess" {
 | 
					 | 
				
			||||||
    libraries = [
 | 
					 | 
				
			||||||
      stockfish
 | 
					 | 
				
			||||||
      inputimeout   
 | 
					 | 
				
			||||||
    ];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    # Fy!
 | 
					 | 
				
			||||||
    flakeIgnore = [ "F403" "F405" "E231" "E265" "E302" "E305" "E501" "E722" ];
 | 
					 | 
				
			||||||
  } (builtins.replaceStrings [''path="./stockfish"''] [''path="${pkgs.stockfish}/bin/stockfish"''] (builtins.readFile ./chess.py));
 | 
					 | 
				
			||||||
in
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
  sops.secrets."keys/wackattack_ctf/flag" = { };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  systemd.sockets."wackattack-ctf-stockfish" = {
 | 
					 | 
				
			||||||
    description = "Save some azure credit for the rest of us";
 | 
					 | 
				
			||||||
    partOf = [ "wackattack-ctf-stockfish.service" ];
 | 
					 | 
				
			||||||
    wantedBy = [ "sockets.target" ];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    socketConfig = {
 | 
					 | 
				
			||||||
      ListenStream = "0.0.0.0:9999";
 | 
					 | 
				
			||||||
      Accept = true;
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
  };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  systemd.services."wackattack-ctf-stockfish@" = {
 | 
					 | 
				
			||||||
    description = "Save some azure credit for the rest of us";
 | 
					 | 
				
			||||||
    after = [ "network.target" ];
 | 
					 | 
				
			||||||
    requires = [ "wackattack-ctf-stockfish.socket" ];
 | 
					 | 
				
			||||||
    wantedBy = [ "multi-user.target" ];
 | 
					 | 
				
			||||||
    serviceConfig = {
 | 
					 | 
				
			||||||
      Type = "simple";
 | 
					 | 
				
			||||||
      DynamicUser = true;
 | 
					 | 
				
			||||||
      WorkingDirectory = "%d";
 | 
					 | 
				
			||||||
      Restart = "always";
 | 
					 | 
				
			||||||
      StandardInput = "socket";
 | 
					 | 
				
			||||||
      LoadCredential = "flag.txt:${config.sops.secrets."keys/wackattack_ctf/flag".path}";
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      Exec = script;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      # systemd hardening go barr
 | 
					 | 
				
			||||||
      ProcSubset = "pid";
 | 
					 | 
				
			||||||
      ProtectProc = "invisible";
 | 
					 | 
				
			||||||
      AmbientCapabilities = "";
 | 
					 | 
				
			||||||
      CapabilityBoundingSet = "";
 | 
					 | 
				
			||||||
      NoNewPrivileges = true;
 | 
					 | 
				
			||||||
      ProtectSystem = "strict";
 | 
					 | 
				
			||||||
      ProtectHome = true;
 | 
					 | 
				
			||||||
      PrivateTmp = true;
 | 
					 | 
				
			||||||
      PrivateDevices = true;
 | 
					 | 
				
			||||||
      PrivateUsers = true;
 | 
					 | 
				
			||||||
      ProtectHostname = true;
 | 
					 | 
				
			||||||
      ProtectClock = true;
 | 
					 | 
				
			||||||
      ProtectKernelTunables = true;
 | 
					 | 
				
			||||||
      ProtectKernelModules = true;
 | 
					 | 
				
			||||||
      ProtectKernelLogs = true;
 | 
					 | 
				
			||||||
      ProtectControlGroups = true;
 | 
					 | 
				
			||||||
      RestrictAddressFamilies = [ "AF_INET" "AF_INET6" ];
 | 
					 | 
				
			||||||
      RestrictNamespaces = true;
 | 
					 | 
				
			||||||
      LockPersonality = true;
 | 
					 | 
				
			||||||
      RestrictRealtime = true;
 | 
					 | 
				
			||||||
      RestrictSUIDSGID = true;
 | 
					 | 
				
			||||||
      RemoveIPC = true;
 | 
					 | 
				
			||||||
      PrivateMounts = true;
 | 
					 | 
				
			||||||
      SystemCallArchitectures = "native";
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
  };
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -13,9 +13,6 @@ mediawiki:
 | 
				
			|||||||
    database: ENC[AES256_GCM,data:EvVK3Mo6cZiIZS+gTxixU4r9SXN41VqwaWOtortZRNH+WPJ4xcYvzYMJNg==,iv:JtFTRLn3fzKIfgAPRqRgQjct7EdkEHtiyQKPy8/sZ2Q=,tag:nqzseG6BC0X5UNI/3kZZ3A==,type:str]
 | 
					    database: ENC[AES256_GCM,data:EvVK3Mo6cZiIZS+gTxixU4r9SXN41VqwaWOtortZRNH+WPJ4xcYvzYMJNg==,iv:JtFTRLn3fzKIfgAPRqRgQjct7EdkEHtiyQKPy8/sZ2Q=,tag:nqzseG6BC0X5UNI/3kZZ3A==,type:str]
 | 
				
			||||||
keycloak:
 | 
					keycloak:
 | 
				
			||||||
    database: ENC[AES256_GCM,data:76+AZnNR5EiturTP7BdOCKE90bFFkfGlRtviSP5NHxPbb3RfFPJEMlwtzA==,iv:nS7VTossHdlrHjPeethhX+Ysp9ukrb5JD7kjG28OFpY=,tag:OMpiEv9nQA7v6lWJfNxEEw==,type:str]
 | 
					    database: ENC[AES256_GCM,data:76+AZnNR5EiturTP7BdOCKE90bFFkfGlRtviSP5NHxPbb3RfFPJEMlwtzA==,iv:nS7VTossHdlrHjPeethhX+Ysp9ukrb5JD7kjG28OFpY=,tag:OMpiEv9nQA7v6lWJfNxEEw==,type:str]
 | 
				
			||||||
keys:
 | 
					 | 
				
			||||||
    wackattack_ctf:
 | 
					 | 
				
			||||||
        flag: ENC[AES256_GCM,data:cZCaGb/u/OZgAvXnuJPL3XqmnIa26Rl2IUpWpG/fpt/dJ7+/KssXVa6A5G6ObQhF7deCmTxuoVP8JU+DQzYRr0ftvKhLJ87rgzrE3j+UkA==,iv:3uFkNqXlVj94klU20yPIUd8tIeyUIfp0++2wkdIkiYM=,tag:OZMyEt118u10F5vSUFZE7A==,type:str]
 | 
					 | 
				
			||||||
sops:
 | 
					sops:
 | 
				
			||||||
    kms: []
 | 
					    kms: []
 | 
				
			||||||
    gcp_kms: []
 | 
					    gcp_kms: []
 | 
				
			||||||
@@ -49,8 +46,8 @@ sops:
 | 
				
			|||||||
            akVjeTNTeGorZjJQOVlMeCtPRUVYL3MK+VMvGxrbzGz4Q3sdaDDWjal+OiK+JYKX
 | 
					            akVjeTNTeGorZjJQOVlMeCtPRUVYL3MK+VMvGxrbzGz4Q3sdaDDWjal+OiK+JYKX
 | 
				
			||||||
            GHiMXVHQJZu/RrlxMjHKN6V3iaqxZpuvLAEJ2Lzy5EOHPtuiiRyeHQ==
 | 
					            GHiMXVHQJZu/RrlxMjHKN6V3iaqxZpuvLAEJ2Lzy5EOHPtuiiRyeHQ==
 | 
				
			||||||
            -----END AGE ENCRYPTED FILE-----
 | 
					            -----END AGE ENCRYPTED FILE-----
 | 
				
			||||||
    lastmodified: "2023-10-26T19:59:04Z"
 | 
					    lastmodified: "2023-09-17T02:02:24Z"
 | 
				
			||||||
    mac: ENC[AES256_GCM,data:uH0RfKBjjbYvxjl4XyoXWvwUpi+W7IQZjBdC5UoslotToTw0xnici2fKxPNZ9aFJsukLMPLC+tsT/shUqW373f/NyhsJt0Vb2YtuozFQyQstZQEpnm4WuVoFR/MEjAra/PaM4ATHSGgDuHa7qrpdKTLnrMOai5ZqxLfFbLws3dA=,iv:47hHzrnfZG5NtCN0HjziZdDBJTr451/kvY95GpB3G2M=,tag:3TCs7DSeWB6NujDUlQVGjA==,type:str]
 | 
					    mac: ENC[AES256_GCM,data:Lkvj9UOdE/WZtFReMs6n8ucFuJNPb76ZhPHFpYAEqYEe8d9FdMPMzq05DBAJe9IqpFS0jc9SWxJUPHfGgoMR8nPciZuR/mpJ+4s/cRkPbApwBPcLlvatE/qkbcxzoLlb1vN0gth5G/U7UEfk5Pp9gIz6Yo4sEIS3Za42tId1MpI=,iv:s3VELgU/RJ98/lbQV3vPtOLXtwFzB3KlY7bMKbAzp/g=,tag:D8s0XyGnd8UhbCseB/TyFg==,type:str]
 | 
				
			||||||
    pgp:
 | 
					    pgp:
 | 
				
			||||||
        - created_at: "2023-05-21T00:28:40Z"
 | 
					        - created_at: "2023-05-21T00:28:40Z"
 | 
				
			||||||
          enc: |
 | 
					          enc: |
 | 
				
			||||||
@@ -73,4 +70,4 @@ sops:
 | 
				
			|||||||
            -----END PGP MESSAGE-----
 | 
					            -----END PGP MESSAGE-----
 | 
				
			||||||
          fp: F7D37890228A907440E1FD4846B9228E814A2AAC
 | 
					          fp: F7D37890228A907440E1FD4846B9228E814A2AAC
 | 
				
			||||||
    unencrypted_suffix: _unencrypted
 | 
					    unencrypted_suffix: _unencrypted
 | 
				
			||||||
    version: 3.8.1
 | 
					    version: 3.7.3
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										12
									
								
								shell.nix
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								shell.nix
									
									
									
									
									
								
							@@ -3,5 +3,17 @@ pkgs.mkShell {
 | 
				
			|||||||
  nativeBuildInputs = with pkgs; [
 | 
					  nativeBuildInputs = with pkgs; [
 | 
				
			||||||
    sops
 | 
					    sops
 | 
				
			||||||
    gnupg
 | 
					    gnupg
 | 
				
			||||||
 | 
					    openstackclient
 | 
				
			||||||
  ];
 | 
					  ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  shellHook = ''
 | 
				
			||||||
 | 
					    export OS_AUTH_URL=https://api.stack.it.ntnu.no:5000
 | 
				
			||||||
 | 
					    export OS_PROJECT_ID=b78432a088954cdc850976db13cfd61c
 | 
				
			||||||
 | 
					    export OS_PROJECT_NAME="STUDORG_Programvareverkstedet"
 | 
				
			||||||
 | 
					    export OS_USER_DOMAIN_NAME="NTNU"
 | 
				
			||||||
 | 
					    export OS_PROJECT_DOMAIN_ID="d3f99bcdaf974685ad0c74c2e5d259db"
 | 
				
			||||||
 | 
					    export OS_REGION_NAME="NTNU-IT"
 | 
				
			||||||
 | 
					    export OS_INTERFACE=public
 | 
				
			||||||
 | 
					    export OS_IDENTITY_API_VERSION=3
 | 
				
			||||||
 | 
					  '';
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,7 +3,12 @@
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
  users.users.danio = {
 | 
					  users.users.danio = {
 | 
				
			||||||
    isNormalUser = true;
 | 
					    isNormalUser = true;
 | 
				
			||||||
    extraGroups = [ "drift" ]; # Enable ‘sudo’ for the user.
 | 
					    extraGroups = [ "drift" "nix-builder-users" ];
 | 
				
			||||||
    shell = pkgs.zsh;
 | 
					    shell = pkgs.zsh;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    openssh.authorizedKeys.keys = [
 | 
				
			||||||
 | 
					      "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCp8iMOx3eTiG5AmDh2KjKcigf7xdRKn9M7iZQ4RqP0np0UN2NUbu+VAMJmkWFyi3JpxmLuhszU0F1xY+3qM3ARduy1cs89B/bBE85xlOeYhcYVmpcgPR5xduS+TuHTBzFAgp+IU7/lgxdjcJ3PH4K0ruGRcX1xrytmk/vdY8IeSk3GVWDRrRbH6brO4cCCFjX0zJ7G6hBQueTPQoOy3jrUvgpRkzZY4ZCuljXtxbuX5X/2qWAkp8ca0iTQ5FzNA5JUyj+DWeEzjIEz6GrckOdV2LjWpT9+CtOqoPZOUudE1J9mJk4snNlMQjE06It7Kr50bpwoPqnxjo7ZjlHFLezl"
 | 
				
			||||||
 | 
					      "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDpGSDczzDOhTETCj+uB5e3/9QbOCaVW1knM+n1ey0n6LXH7uiPPmzuZiqfzmfbB1z4bjM2zpn3D6Et6zRCrBUjhTZqf/5GoNlvhVA6QYmBmBp98b8oY7juj5cmu55voxD0S5rC1mQMnWAAf8e8OPbkhs9Lt0XlOYdotLNIZQubzWqE2DK45g/h17ELJs+jkNXoalFjLvLXWzE/C+3pYoeNJVGHfVMTIwt7o64E6JXhxuYTYdSIuzd+BjntkSCXzcAzBFMRwkdlFVoBtLUMMcMQl39kcXv7lAQ8pv+8b1j1N9WuQVf1qEAcZguaimI1ifbXP5d841pZPApCj5KXectIEldfTrcwg8rZpd2UfYS/3XCcOuidBGprY7XsU/jz8wHbH68UjUrsLyaOMnG2ChYztnf63vm3gRs3Fc6FqTycpgYOPDeZBVTcMyPGgtiZvhnTeY20xFS5lK6M+dmgaDqH24kPLiwYSpUF2NK+Rg/2bZxvt/GaSr4U6fJGi3FCJOM= root@DanixLaptop"
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										12
									
								
								users/jonmro.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								users/jonmro.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
				
			|||||||
 | 
					{pkgs, ...}:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					  users.users.jonmro = {
 | 
				
			||||||
 | 
					    isNormalUser = true;
 | 
				
			||||||
 | 
					    extraGroups = [ "wheel" ]; 
 | 
				
			||||||
 | 
					    shell = pkgs.zsh;
 | 
				
			||||||
 | 
					    openssh.authorizedKeys.keys = [
 | 
				
			||||||
 | 
					      "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEm5PfYmfl/0fnAP/3coVlvTw3/TYNLT6r/NwJHZbLAK jonrodtang@gmail.com"
 | 
				
			||||||
 | 
					    ];
 | 
				
			||||||
 | 
					  };
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
@@ -6,6 +6,7 @@
 | 
				
			|||||||
    extraGroups = [
 | 
					    extraGroups = [
 | 
				
			||||||
      "wheel"
 | 
					      "wheel"
 | 
				
			||||||
      "drift"
 | 
					      "drift"
 | 
				
			||||||
 | 
					      "nix-builder-users"
 | 
				
			||||||
    ];
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    packages = with pkgs; [
 | 
					    packages = with pkgs; [
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										23
									
								
								values.nix
									
									
									
									
									
								
							
							
						
						
									
										23
									
								
								values.nix
									
									
									
									
									
								
							@@ -21,12 +21,6 @@ in rec {
 | 
				
			|||||||
      ipv4 = pvv-ipv4 213;
 | 
					      ipv4 = pvv-ipv4 213;
 | 
				
			||||||
      ipv6 = pvv-ipv6 213;
 | 
					      ipv6 = pvv-ipv6 213;
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
    grevling-tap = {
 | 
					 | 
				
			||||||
      ipv4 = pvv-ipv4 251;
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
    tuba-tap = {
 | 
					 | 
				
			||||||
      ipv4 = pvv-ipv4 252;
 | 
					 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  hosts = {
 | 
					  hosts = {
 | 
				
			||||||
@@ -43,6 +37,13 @@ in rec {
 | 
				
			|||||||
      ipv4 = pvv-ipv4 209;
 | 
					      ipv4 = pvv-ipv4 209;
 | 
				
			||||||
      ipv6 = pvv-ipv6 209;
 | 
					      ipv6 = pvv-ipv6 209;
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
 | 
					    bob = {
 | 
				
			||||||
 | 
					      ipv4 = "129.241.152.254";
 | 
				
			||||||
 | 
					      # ipv6 = ;
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
 | 
					    knutsen = {
 | 
				
			||||||
 | 
					      ipv4 = pvv-ipv4 191;
 | 
				
			||||||
 | 
					    };
 | 
				
			||||||
    shark = {
 | 
					    shark = {
 | 
				
			||||||
      ipv4 = pvv-ipv4 196;
 | 
					      ipv4 = pvv-ipv4 196;
 | 
				
			||||||
      ipv6 = pvv-ipv6 196;
 | 
					      ipv6 = pvv-ipv6 196;
 | 
				
			||||||
@@ -55,13 +56,9 @@ in rec {
 | 
				
			|||||||
      ipv4 = pvv-ipv4 204;
 | 
					      ipv4 = pvv-ipv4 204;
 | 
				
			||||||
      ipv6 = pvv-ipv6 "1:4f"; # Wtf øystein og daniel why
 | 
					      ipv6 = pvv-ipv6 "1:4f"; # Wtf øystein og daniel why
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
    grevling = {
 | 
					    buskerud = {
 | 
				
			||||||
      ipv4 = pvv-ipv4 198;
 | 
					      ipv4 = pvv-ipv4 231;
 | 
				
			||||||
      ipv6 = pvv-ipv6 198;
 | 
					      ipv6 = pvv-ipv6 231;
 | 
				
			||||||
    };
 | 
					 | 
				
			||||||
    tuba = {
 | 
					 | 
				
			||||||
      ipv4 = pvv-ipv4 199;
 | 
					 | 
				
			||||||
      ipv6 = pvv-ipv6 199;
 | 
					 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user