Fix xdg portals issue, update packages
This commit is contained in:
parent
f586b04d38
commit
38546da9cc
3 changed files with 20 additions and 16 deletions
|
@ -17,7 +17,7 @@ let
|
|||
in
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
[ # Include the other files
|
||||
./hardware-configuration.nix
|
||||
./custom.nix
|
||||
./home-manager.nix
|
||||
|
@ -27,7 +27,7 @@ in
|
|||
boot.loader.systemd-boot.enable = false;
|
||||
boot.loader.grub.device = "nodev";
|
||||
boot.loader.grub.efiSupport = true;
|
||||
boot.loader.grub.useOSProber = true;
|
||||
boot.loader.grub.useOSProber = false;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = "foxbox"; # Define your hostname.
|
||||
|
@ -36,7 +36,7 @@ in
|
|||
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "America/New_York";
|
||||
time.timeZone = "America/Chicago";
|
||||
|
||||
# Configure network proxy if necessary
|
||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||
|
@ -58,7 +58,7 @@ in
|
|||
|
||||
# Configure keymap in X11
|
||||
services.xserver.xkb.layout = "us";
|
||||
services.xserver.xkb.options = "eurosign:e,caps:escape";
|
||||
#services.xserver.xkb.options = "eurosign:e,caps:escape";
|
||||
|
||||
# Enable CUPS to print documents.
|
||||
services.printing.enable = true;
|
||||
|
|
|
@ -19,7 +19,6 @@ in
|
|||
pkgs.sway
|
||||
pkgs.swaybg
|
||||
pkgs.swaylock
|
||||
pkgs.j4-dmenu-desktop
|
||||
pkgs.i3status
|
||||
pkgs.clipman
|
||||
pkgs.slurp
|
||||
|
@ -33,16 +32,19 @@ in
|
|||
pkgs.mesa
|
||||
pkgs.meslo-lgs-nf
|
||||
pkgs.libvirt
|
||||
pkgs.flatpak
|
||||
pkgs.xdg-desktop-portal-gtk
|
||||
#pkgs.flatpak
|
||||
#pkgs.xdg-desktop-portal-gtk
|
||||
pkgs.iotop
|
||||
pkgs.gparted
|
||||
];
|
||||
|
||||
# enable flatpak
|
||||
services.flatpak.enable = true;
|
||||
xdg.portal.enable = true;
|
||||
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
||||
# disabled because the XDG portal adds like a 30 second delay to opening most programs, and I don't actually use flatpaks so whatever
|
||||
#services.flatpak.enable = true;
|
||||
#xdg.portal.enable = true;
|
||||
#xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
||||
#xdg.portal.config = [ "xdg-deskop-portal-gtk" ];
|
||||
xdg.portal.config.common.default = "*";
|
||||
#xdg.portal.config.common.default = "*";
|
||||
|
||||
#programs.steam.enable = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue