nix-da/home/default.nix
Nydragon d89eb790b1
init: flakeify the majority of my config
Remaining point of focus is making the sway config working properly
2024-05-13 15:34:22 +09:00

75 lines
1.4 KiB
Nix

{ config, inputs, system, stateVersion, username, homeDirectory, pkgs, unstable
, ... }:
let scripts = import ./scripts { inherit pkgs; };
in {
imports = [
./firefox
./fish
#./sway
./neovim
./rofi
#./thunderbird
];
xdg.configFile."gtk-4.0/gtk.css".source =
"${pkgs.catppuccin-gtk}/share/themes/Catppuccin-Frappe-Standard-Blue-Dark/gtk-4.0/gtk.css";
dconf = {
enable = true;
settings."org/gnome/desktop/interface".color-scheme = "prefer-dark";
settings."org/virt-manager/virt-manager/connections" = {
autoconnect = [ "qemu:///system" ];
uris = [ "qemu:///system" ];
};
};
services.blueman-applet.enable = true;
qt.enable = true;
qt.platformTheme = "gtk";
home = {
inherit stateVersion;
inherit username;
inherit homeDirectory;
packages = with pkgs; [
digikam
element-desktop
libreoffice
loupe
gnome.seahorse
gimp
calibre
vlc
thunderbird
gnome.nautilus
rofi-power-menu
unstable.lollypop
# Proprietary
unstable.postman
unstable.mongodb-compass
# CLI tools
delta
fzf
jhead
fdupes
exiftool
sshfs
zip
unzip
lazygit
fd
ripgrep
# Scripts
scripts.screenshot
scripts.set-background
];
sessionVariables = {
EDITOR = "nvim";
MOZ_ENABLE_WAYLAND = 1;
};
};
}