nixos-config/home/default.nix

33 lines
572 B
Nix
Raw Normal View History

2024-01-12 15:59:57 +01:00
{
config,
pkgs,
lib,
inputs,
...
}: {
imports = [
./modules
./system.nix
];
home.username = "xqtc";
2024-10-08 11:19:34 +02:00
home.homeDirectory =
if config.os == "linux"
then "/home/xqtc"
else "/Users/xqtc";
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./config-files/wezterm.lua;
};
programs.joshuto = {enable = true;};
dconf.enable = config.os == "linux";
2024-02-12 20:08:44 +01:00
2024-04-13 20:43:41 +02:00
services.easyeffects = lib.mkIf (pkgs.system == "x86_64-linux") {enable = true;};
2024-02-20 21:02:36 +01:00
2024-02-13 22:04:37 +01:00
home.stateVersion = "23.11";
2024-02-13 22:04:37 +01:00
programs.home-manager.enable = true;
2024-01-12 15:59:57 +01:00
}