disabling wireguard until I can add the key to a sops file

This commit is contained in:
John Lancaster
2026-03-26 19:09:38 -05:00
parent 5ce7ace964
commit 7f69fc6dce
3 changed files with 4 additions and 20 deletions
+1 -19
View File
@@ -12,14 +12,7 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config = {
permittedInsecurePackages = [ "openssl-1.1.1w" ];
# allowUnfree = true;
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"1password"
"1password-cli"
"steam"
"steam-unwrapped"
"sublime4"
];
allowUnfree = true;
};
networking = {
@@ -31,17 +24,6 @@
services.displayManager.autoLogin.enable = true;
services.displayManager.autoLogin.user = "john";
# Define a user account. Don't forget to set a password with 'passwd'.
users.users.john = {
isNormalUser = true;
description = "John Lancaster";
extraGroups = [
"networkmanager"
"wheel"
];
shell = pkgs.zsh;
};
programs.zsh.enable = true;
services.openssh.enable = true;
services.tailscale.enable = true;