nixos-config/home/lambda/default.nix

112 lines
2.4 KiB
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
2024-01-12 15:59:57 +01:00
{
2024-01-28 22:51:43 +01:00
#imports = [
# inputs.nixvim.homeManagerModules.nixvim
#];
2024-01-26 19:31:00 +01:00
home.username = "xqtc";
home.homeDirectory = "/home/xqtc";
programs.git = {
enable = true;
userName = "xqtc161";
userEmail = "xqtc@tutanota.com";
};
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./config-files/wezterm.lua;
};
#programs.dconf.enable = true;
#programs.easyeffects.enable = true;
#services.easyeffects.enable = true;
2024-01-12 15:59:57 +01:00
programs = {
2024-01-26 19:31:00 +01:00
2024-01-12 15:59:57 +01:00
atuin = {
enable = true;
enableNushellIntegration = true;
};
nushell = { enable = true;
# The config.nu can be anywhere you want if you like to edit your Nushell with Nu
extraConfig = builtins.readFile ./config-files/config.nu;
2024-01-12 15:59:57 +01:00
};
carapace.enable = true;
carapace.enableNushellIntegration = true;
starship = { enable = true;
settings = {
add_newline = true;
character = {
success_symbol = "[λ::](bold green)";
error_symbol = "[λ::](bold red)";
};
};
};
};
2024-01-28 22:51:43 +01:00
programs.nixvim = {
enable = true;
colorschemes.catppuccin.enable = true;
plugins = {
lsp = {
enable = true;
servers = {
rust-analyzer = {
enable = true;
installLanguageServer = false;
};
nil_ls.enable = true;
};
};
gitsigns.enable = true;
treesitter.enable = true;
nvim-cmp.enable = true;
telescope.enable = true;
cmp-nvim-lsp.enable = true;
};
};
2024-01-12 15:59:57 +01:00
#wayland.windowManager.hyprland = {
# enable = true;
# package = pkgs.hyprland;
# xwayland.enable = true;
# enableNvidiaPatches = true;
#};
#home.file."~/.config/hypr/hyprland.conf.
home.packages = with pkgs; [
neofetch
btop
iftop
strace
ltrace
nodejs
nerdfonts
vivaldi
vivaldi-ffmpeg-codecs
signal-desktop
vesktop
telegram-desktop
#schildichat-desktop
2024-01-26 19:31:00 +01:00
neovide
2024-01-28 22:51:43 +01:00
jetbrains.rust-rover
2024-01-26 19:31:00 +01:00
2024-01-12 15:59:57 +01:00
yubioath-flutter
steam
2024-01-26 19:31:00 +01:00
protonup-qt
spotify
sayonara
2024-01-12 15:59:57 +01:00
];
home.stateVersion = "23.11";
programs.home-manager.enable = true;
}