mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 16:10:32 +01:00
30 lines
560 B
Nix
30 lines
560 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./modules
|
|
./system.nix
|
|
];
|
|
home.username = "xqtc";
|
|
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";
|
|
|
|
services.easyeffects = lib.mkIf (pkgs.system == "x86_64-linux") {enable = true;};
|
|
|
|
home.stateVersion = "23.11";
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|