2024-01-12 15:59:57 +01:00
|
|
|
{
|
2024-03-09 12:21:37 +01:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
imports = [
|
|
|
|
./modules/nixvim.nix
|
2024-03-09 12:58:01 +01:00
|
|
|
./modules/shell.nix
|
2024-03-09 12:21:37 +01:00
|
|
|
./modules/firefox.nix
|
2024-03-09 12:58:01 +01:00
|
|
|
./modules/wm.nix
|
|
|
|
./modules/gtk.nix
|
2024-05-19 21:30:03 +02:00
|
|
|
./modules/qt.nix
|
2024-03-09 12:58:01 +01:00
|
|
|
./modules/home-pkgs.nix
|
2024-03-09 14:27:32 +01:00
|
|
|
./modules/git.nix
|
2024-03-30 21:23:52 +01:00
|
|
|
./modules/rofi.nix
|
2024-04-11 20:36:58 +02:00
|
|
|
./modules/spicetify.nix
|
2024-03-09 12:21:37 +01:00
|
|
|
#./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;
|
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-03-09 12:21:37 +01:00
|
|
|
|
2024-02-13 22:04:37 +01:00
|
|
|
programs.home-manager.enable = true;
|
2024-01-12 15:59:57 +01:00
|
|
|
}
|