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" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config = { nixpkgs.config = {
permittedInsecurePackages = [ "openssl-1.1.1w" ]; permittedInsecurePackages = [ "openssl-1.1.1w" ];
# allowUnfree = true; allowUnfree = true;
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"1password"
"1password-cli"
"steam"
"steam-unwrapped"
"sublime4"
];
}; };
networking = { networking = {
@@ -31,17 +24,6 @@
services.displayManager.autoLogin.enable = true; services.displayManager.autoLogin.enable = true;
services.displayManager.autoLogin.user = "john"; 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; programs.zsh.enable = true;
services.openssh.enable = true; services.openssh.enable = true;
services.tailscale.enable = true; services.tailscale.enable = true;
+1 -1
View File
@@ -23,7 +23,7 @@
john john
gnome gnome
steam steam
wireguard # wireguard
# greetd # greetd
# niri # niri
]); ]);
+2
View File
@@ -27,6 +27,8 @@
''; '';
in in
{ {
imports = [ inputs.sops-nix.nixosModules.sops ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
wireguard-tools wireguard-tools
wg-netmanager wg-netmanager