feat: configure desktop
This commit is contained in:
parent
2138743d3e
commit
652b1f3dd3
10 changed files with 201 additions and 15 deletions
|
|
@ -15,7 +15,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
services.xserver.xkb.layout = "us";
|
||||
services.xserver = {
|
||||
enable = false;
|
||||
layout = "en";
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
curl
|
||||
|
|
@ -23,17 +26,22 @@
|
|||
neovim
|
||||
btop
|
||||
nixd
|
||||
];
|
||||
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
};
|
||||
];
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
time.timeZone = "America/Sao_Paulo";
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
|
||||
services.dbus.enable = true;
|
||||
programs.dconf.enable = true;
|
||||
|
||||
environment.sessionVariables = {
|
||||
XDG_SESSION_TYPE = "wayland";
|
||||
CLUTTER_BACKEND = "wayland";
|
||||
SDL_VIDEODRIVER = "wayland";
|
||||
MOZ_ENABLE_WAYLAND = "1";
|
||||
ELECTRON_OZONE_PLATFORM_HINT = "wayland";
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue