mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-23 00:20:33 +01:00
39 lines
728 B
Nix
39 lines
728 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./modules/nixvim.nix
|
|
./modules/shell.nix
|
|
./modules/firefox.nix
|
|
./modules/wm.nix
|
|
./modules/gtk.nix
|
|
./modules/qt.nix
|
|
./modules/home-pkgs.nix
|
|
./modules/git.nix
|
|
./modules/rofi.nix
|
|
./modules/spicetify.nix
|
|
#./modules/ssh.nix
|
|
];
|
|
home.username = "xqtc";
|
|
home.homeDirectory = "/home/xqtc";
|
|
|
|
programs.wezterm = {
|
|
enable = true;
|
|
extraConfig = builtins.readFile ./config-files/wezterm.lua;
|
|
};
|
|
|
|
programs.joshuto = {enable = true;};
|
|
|
|
dconf.enable = true;
|
|
|
|
services.easyeffects = lib.mkIf (pkgs.system == "x86_64-linux") {enable = true;};
|
|
|
|
home.stateVersion = "23.11";
|
|
|
|
programs.home-manager.enable = true;
|
|
}
|