cleaned up home manager config

This commit is contained in:
Thilo Billerbeck 2023-05-16 23:02:01 +02:00
parent 84321246c1
commit 3c19c99ef4
6 changed files with 109 additions and 30 deletions

View file

@ -1,10 +1,8 @@
{ config, pkgs, lib, ... }:
let nixGLWrap = import ./../utils/nixGLWrap.nix { inherit pkgs lib; };
in {
{
programs.alacritty = {
enable = true;
package = (nixGLWrap pkgs.alacritty);
settings = {
window = {
decorations = "full";

View file

@ -1,13 +1,8 @@
{ config, pkgs, lib, ... }:
let nixGLWrap = import ./../utils/nixGLWrap.nix { inherit pkgs lib; };
in {
{
programs = {
vscode = {
enable = true;
package = (nixGLWrap (pkgs.vscode.override {
commandLineArgs =
"--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --gtk-version=4";
}));
};
};
}