diff --git a/configuration.nix b/configuration.nix index be42e11..1907410 100644 --- a/configuration.nix +++ b/configuration.nix @@ -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" = { diff --git a/hardware-configuration/iota.nix b/hardware-configuration/iota.nix index 31d0870..dd9dbf7 100644 --- a/hardware-configuration/iota.nix +++ b/hardware-configuration/iota.nix @@ -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 + ''; + }; }