Update default.nix

This commit is contained in:
Thilo Hohlt
2023-06-03 10:00:27 +02:00
committed by GitHub
parent 3da79bf3a4
commit 80b17a54a9

View File

@@ -18,10 +18,19 @@
auth include login
'';
};
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
];
};
home-manager.users.thiloho = { pkgs, ... }: {
wayland.windowManager.sway = {
enable = true;
wrapperFeatures.gtk = true;
config = {
modifier = "Mod1";
terminal = "alacritty";
@@ -37,13 +46,13 @@
};
xwayland = false;
};
gtk = {
enable = true;
theme = {
package = pkgs.gnome.gnome-themes-extra;
name = "Adwaita-dark";
};
};
# gtk = {
# enable = true;
# theme = {
# package = pkgs.gnome.gnome-themes-extra;
# name = "Adwaita-dark";
# };
# };
programs = {
git = {
signing = {
@@ -53,7 +62,7 @@
swaylock.enable = true;
};
home.packages = with pkgs; [
dconf
# dconf
bemenu
];
};