From e825d3e101e1b9cde646a6f4d776bf6065146389 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Thu, 17 Feb 2022 17:52:00 -0500 Subject: [PATCH 1/3] Hide systemd-boot by default --- modules/bootloader.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/bootloader.nix b/modules/bootloader.nix index bce9aab..9806267 100644 --- a/modules/bootloader.nix +++ b/modules/bootloader.nix @@ -1,5 +1,6 @@ { # Use the systemd-boot EFI boot loader. + boot.loader.timeout = 0; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = false; boot.plymouth.enable = true; From 84011a1396745c47c02bce79b169e17e31c151fa Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Thu, 17 Feb 2022 17:52:26 -0500 Subject: [PATCH 2/3] loft: adb user group --- machines/loft/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/loft/configuration.nix b/machines/loft/configuration.nix index 4e1e4b7..cdaded0 100644 --- a/machines/loft/configuration.nix +++ b/machines/loft/configuration.nix @@ -56,7 +56,7 @@ users.users.michael = { isNormalUser = true; description = "Michael Thomas"; - extraGroups = [ "wheel" "docker" "networkmanager" ]; # Enable ‘sudo’ for the user. + extraGroups = [ "wheel" "docker" "networkmanager" "adbusers" ]; # Enable ‘sudo’ for the user. shell = pkgs.zsh; }; From e2ea674ccbb268a589f4ba4247ad3936e7284cf9 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Thu, 17 Feb 2022 17:52:41 -0500 Subject: [PATCH 3/3] Remove vscode extension --- user/modules/vscode.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user/modules/vscode.nix b/user/modules/vscode.nix index 0d9d9ed..5ae63ad 100644 --- a/user/modules/vscode.nix +++ b/user/modules/vscode.nix @@ -4,7 +4,7 @@ vscode = { enable = true; extensions = [ - pkgs.vscode-extensions.bbenoist.Nix + # pkgs.vscode-extensions.bbenoist.Nix ]; # userSettings = { # "editor.fontFamily" = "'FiraCode Nerd Font', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'";