This commit is contained in:
Steph 2023-01-04 10:39:10 +01:00
parent fa5d36d90b
commit 4189b2cf29
2 changed files with 9 additions and 1 deletions

View File

@ -104,7 +104,7 @@
users.users.steph = {
isNormalUser = true;
description = "Steph";
extraGroups = [ "networkmanager" "wheel" ];
extraGroups = [ "networkmanager" "wheel" "dialout" ];
packages = with pkgs; [
librewolf-wayland
tdesktop
@ -313,6 +313,8 @@ $NEW_PROMPT_COMMAND"
set -g set-titles-string "#T"
'';
services.flatpak.enable = true;
dconf.settings = {
"org/gnome/desktop/wm/keybindings" = {

View File

@ -42,4 +42,10 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
boot.loader.systemd-boot.extraEntries = {
"ubuntu.conf" = ''
title Ubuntu
linux /EFI/ubuntu/shimx64.efi
'';
};
}