more dedup

This commit is contained in:
Vivian 2023-04-25 09:50:25 +02:00
parent 423a2ee604
commit 2dfc594aad
12 changed files with 159 additions and 233 deletions

View file

@ -8,15 +8,20 @@ let
in {
programs.home-manager.enable = true;
imports = [];
home.username = "victor";
home.homeDirectory = "/home/victor";
home.stateVersion = "23.05";
imports = [ ./theme.nix ./neovim.nix ];
# Enable catppuccin theme
themes.v.catppuccin.enable = true;
# Custom dconf settings
dconf.settings."org/gnome/desktop/input-sources".xkb-options = [ "caps:swapescape"];
programs.v.nvim.enable = true;
home.packages = with pkgs; [
btop
calibre
@ -188,13 +193,5 @@ in {
templates = "${home}/.templates";
videos = "${home}/cloud/Videos";
};
# xdg.configFile."electron-flags.conf".text = ''
# --enable-features=UseOzonePlatform
# --ozone-platform=wayland
# --enable-features=WaylandWindowDecorations
# --ozone-platform-hint=auto
# '';
services.syncthing.enable = true;
}