devos/users/maekasza/default.nix

34 lines
873 B
Nix
Raw Permalink Normal View History

2022-09-19 12:38:27 +02:00
{ pkgs, ... }: {
2022-09-23 00:05:26 +02:00
imports = [ ../profiles/core ../profiles/direnv ../profiles/zsh ../profiles/neovim ../profiles/syncthing ../profiles/kdeconnect ../profiles/tmux ../profiles/mpv ../profiles/sway ];
2022-11-23 09:41:54 +01:00
home.stateVersion = "22.11";
2022-09-19 12:38:27 +02:00
targets.genericLinux.enable = true;
2023-04-24 12:26:47 +02:00
home.packages = [ pkgs.home-manager pkgs.element-desktop pkgs.nixgl.nixGLIntel pkgs.nixgl.nixVulkanIntel ];
2022-09-19 12:38:27 +02:00
wayland.windowManager.sway.extraSessionCommands = ''
2022-09-23 00:05:26 +02:00
export WLR_NO_HARDWARE_CURSORS=1
2022-09-19 12:38:27 +02:00
'';
2022-09-19 15:41:22 +02:00
mae.alacritty = {
enable = true;
2023-04-24 12:26:47 +02:00
# libglWrapper = true;
2022-09-19 15:41:22 +02:00
};
2022-09-19 12:38:27 +02:00
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = 1;
};
gtk = {
enable = true;
theme = {
name = "Arc-Dark";
package = pkgs.arc-theme;
};
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = true;
};
};
programs.go = {
enable = true;
goPath = ".local/go";
};
}