Update default.nix

This commit is contained in:
Thilo Hohlt
2023-06-07 20:44:27 +02:00
committed by GitHub
parent 0187345f2b
commit 7326c84aef

View File

@@ -8,8 +8,6 @@
networking.hostName = "pc";
environment.sessionVariables.NIXOS_OZONE_WL = "1";
hardware.opengl.enable = true;
security.polkit.enable = true;
@@ -122,14 +120,17 @@
name = "Adwaita-dark";
};
};
home.packages = with pkgs; [
dconf
tofi
wayshot
wl-clipboard
xdg-utils
slurp
];
home = {
sessionVariables.NIXOS_OZONE_WL = "1";
packages = with pkgs; [
dconf
tofi
wayshot
wl-clipboard
xdg-utils
slurp
];
};
};
}