42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
|
{ pkgs, ... }: {
|
||
|
imports = [ ../profiles/direnv ../profiles/git ../profiles/zsh ../profiles/neovim ../profiles/syncthing ../profiles/kdeconnect ../profiles/podman ../profiles/alacritty ../profiles/tmux ../profiles/mpv ../profiles/sway ];
|
||
|
targets.genericLinux.enable = true;
|
||
|
programs.alacritty.package = pkgs.symlinkJoin {
|
||
|
name = "alacritty-nixgl";
|
||
|
paths = [
|
||
|
(pkgs.writeShellScriptBin
|
||
|
"alacritty"
|
||
|
''
|
||
|
${pkgs.nixgl.nixGLIntel}/bin/nixGLIntel ${pkgs.alacritty}/bin/alacritty "$@"
|
||
|
'')
|
||
|
pkgs.alacritty
|
||
|
];
|
||
|
};
|
||
|
home.packages = [ pkgs.home-manager ];
|
||
|
wayland.windowManager.sway.extraSessionCommands = ''
|
||
|
export WLR_NO_HARDWARE_CURSORS=1
|
||
|
'';
|
||
|
|
||
|
home.sessionVariables = {
|
||
|
XDG_DATA_DIRS = "$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share";
|
||
|
EDITOR = "${pkgs.neovim}/bin/nvim";
|
||
|
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";
|
||
|
};
|
||
|
}
|