aboutsummaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2024-03-23 13:11:23 -0700
committerPreston Pan <preston@nullring.xyz>2024-03-23 13:11:23 -0700
commitb0468f02e5a7ef82749af3d76fd9c3d769cf4228 (patch)
treeb2f0882dc06059a2db1ad3ce18210c99ba832aca /configuration.nix
parente28d69f7229d8aaf5b97dbddc11affade716ef71 (diff)
update config
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix11
1 files changed, 9 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix
index fd453f6..3d41161 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -21,6 +21,11 @@
services.xserver.enable = true;
services.xserver.displayManager.startx.enable = true;
+ services.xserver.desktopManager.runXdgAutostartIfNone = true;
+
+ hardware.bluetooth.enable = true;
+ hardware.bluetooth.powerOnBoot = true;
+ services.blueman.enable = true;
services.xserver = {
layout = "us";
@@ -78,9 +83,11 @@
xdg.portal = {
enable = true;
wlr.enable = true;
- extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
+ extraPortals = [ pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-kde ];
config.common.default = "*";
};
-
system.stateVersion = "23.11";
+ nixpkgs.config.permittedInsecurePackages = [
+ "nix-2.15.3"
+ ];
}