NixOS-Config/home-manager/desktop/configuration.nix

136 lines
2.8 KiB
Nix
Raw Normal View History

{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
# You can import other home-manager modules here
imports = [
# If you want to use modules your own flake exports (from modules/home-manager):
# outputs.homeManagerModules.example
# Or modules exported from other flakes (such as nix-colors):
# inputs.nix-colors.homeManagerModules.default
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
2023-12-28 22:10:17 +01:00
../package-configs/zsh.nix
];
nixpkgs = {
# You can add overlays here
overlays = [
# You can also add overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
# Or define it inline, for example:
# (final: prev: {
# hi = final.hello.overrideAttrs (oldAttrs: {
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
];
# Configure your nixpkgs instance
config = {
# Disable if you don't want unfree packages
allowUnfree = true;
};
};
home = {
username = "lillian";
homeDirectory = "/home/lillian";
};
# Add stuff for your user as you see fit:
# programs.neovim.enable = true;
# home.packages = with pkgs; [ steam ];
home.packages = with pkgs; [
# Coding:
2023-12-19 10:42:48 +01:00
direnv
git
kate
# Chat applications:
2024-01-06 23:42:54 +01:00
element-desktop
signal-desktop
2023-11-28 10:39:10 +01:00
webcord-vencord
# Gaming:
prismlauncher
steam
# Multimedia:
freetube
obs-studio
vlc
# Office applications:
onlyoffice-bin
2023-11-21 11:59:52 +01:00
teams-for-linux
2023-12-07 17:51:22 +01:00
gimp-with-plugins
2023-12-15 21:29:34 +01:00
thunderbird
# System tools:
rage
discover
flameshot
fzf
nextcloud-client
nitrokey-app
protonvpn-gui
2023-11-23 19:05:37 +01:00
sops
virtualbox
watchmate
qbittorrent
zsh
# Web browsing:
firefox
2023-12-12 13:16:12 +01:00
librewolf
ungoogled-chromium
];
programs.vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
arrterian.nix-env-selector
2023-11-28 10:12:11 +01:00
#ban.spellright
dracula-theme.theme-dracula
eamodio.gitlens
github.vscode-pull-request-github
jnoortheen.nix-ide
kamadorueda.alejandra
ms-toolsai.jupyter
ms-pyright.pyright
2024-01-16 15:38:26 +01:00
ms-python.black-formatter
#ms-python.python
ms-python.vscode-pylance
2023-11-28 10:12:46 +01:00
#ms-vscode-remote.remote-containers
ms-vscode-remote.remote-ssh
oderwat.indent-rainbow
rust-lang.rust-analyzer
yzhang.markdown-all-in-one
];
};
# Enable home-manager and git
programs.home-manager.enable = true;
programs.git = {
enable = true;
userEmail = "git@lillianviolet.dev";
2023-11-22 18:27:35 +01:00
userName = "Lillian-Violet";
extraConfig = {
init = {
defaultBranch = "main";
};
};
};
2023-11-22 13:14:27 +01:00
# Nicely reload system units when changing configs
systemd.user.startServices = "sd-switch";
}