infrastructure/nixos/hosts/thalassa/eevee/home/default.nix

20 lines
482 B
Nix
Raw Normal View History

2023-04-22 16:14:45 +02:00
{ lib, config, pkgs, inputs, ... }:
let
tex = pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-full;
dnd-5e-latex-template = { pkgs = [ pkgs.v.dnd-5e-latex-template ]; };
};
in {
programs.home-manager.enable = true;
home.username = "victor";
home.homeDirectory = "/home/victor";
home.stateVersion = "23.05";
2023-04-25 10:04:50 +02:00
imports = [ ../../../../common/desktop/home.nix ];
2023-04-25 09:30:41 +02:00
dconf.settings."org/gnome/desktop/peripherals/mouse" = {
accel-profile = "flat";
};
2023-04-22 16:14:45 +02:00
}