2024-03-01 16:02:40 +01:00
|
|
|
{
|
2024-03-01 16:19:41 +01:00
|
|
|
config,
|
|
|
|
pkgs,
|
2024-03-03 23:58:34 +01:00
|
|
|
lib,
|
2024-03-01 16:19:41 +01:00
|
|
|
...
|
|
|
|
}: {
|
2024-03-06 23:02:59 +01:00
|
|
|
imports = [
|
|
|
|
# sway as windowmanager
|
|
|
|
../../modules/home-manager/sway.nix
|
2024-03-07 11:56:28 +01:00
|
|
|
# zsh config
|
|
|
|
../../modules/home-manager/zsh.nix
|
2024-03-08 22:51:47 +01:00
|
|
|
# foot terminal emulator
|
|
|
|
../../modules/home-manager/foot.nix
|
2024-03-09 10:01:00 +01:00
|
|
|
# often used terminal programs
|
|
|
|
../../modules/home-manager/btop.nix
|
2024-03-09 10:22:44 +01:00
|
|
|
../../modules/home-manager/bat.nix
|
2024-03-09 11:07:51 +01:00
|
|
|
../../modules/home-manager/lazygit.nix
|
2024-03-09 11:30:13 +01:00
|
|
|
../../modules/home-manager/git.nix
|
2024-03-09 10:57:55 +01:00
|
|
|
# use mpd for music
|
|
|
|
../../modules/home-manager/mpd.nix
|
2024-03-10 13:01:38 +01:00
|
|
|
# email config
|
|
|
|
../../modules/home-manager/thunderbird.nix
|
2024-03-06 23:02:59 +01:00
|
|
|
];
|
|
|
|
|
2024-03-01 16:02:40 +01:00
|
|
|
# Home Manager needs a bit of information about you and the paths it should
|
|
|
|
# manage.
|
|
|
|
home.username = "max";
|
|
|
|
home.homeDirectory = "/home/max";
|
|
|
|
|
2024-03-02 00:06:23 +01:00
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
2024-03-01 16:02:40 +01:00
|
|
|
# This value determines the Home Manager release that your configuration is
|
|
|
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
|
|
|
# introduces backwards incompatible changes.
|
|
|
|
#
|
|
|
|
# You should not change this value, even if you update Home Manager. If you do
|
|
|
|
# want to update the value, then make sure to first check the Home Manager
|
|
|
|
# release notes.
|
|
|
|
home.stateVersion = "23.11"; # Please read the comment before changing.
|
|
|
|
|
|
|
|
# The home.packages option allows you to install Nix packages into your
|
|
|
|
# environment.
|
2024-03-01 18:40:12 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
unzip
|
|
|
|
rustup
|
|
|
|
nextcloud-client
|
|
|
|
firefox
|
|
|
|
thunderbird
|
2024-03-01 19:16:28 +01:00
|
|
|
xournalpp
|
2024-03-03 00:27:01 +01:00
|
|
|
kicad
|
2024-03-02 00:06:23 +01:00
|
|
|
prismlauncher
|
|
|
|
steam
|
|
|
|
blender
|
2024-03-02 00:45:37 +01:00
|
|
|
flip-link
|
|
|
|
bacon
|
2024-03-02 00:47:27 +01:00
|
|
|
probe-rs
|
2024-03-02 00:53:17 +01:00
|
|
|
betaflight-configurator
|
2024-03-03 00:25:39 +01:00
|
|
|
loudgain
|
|
|
|
youtube-dl
|
2024-03-03 12:26:53 +01:00
|
|
|
dconf
|
2024-03-04 12:16:41 +01:00
|
|
|
distrobox
|
2024-03-07 00:31:59 +01:00
|
|
|
gyroflow
|
2024-03-08 23:59:44 +01:00
|
|
|
libqalculate
|
|
|
|
sops
|
2024-03-09 23:49:44 +01:00
|
|
|
pwvucontrol
|
|
|
|
qpwgraph
|
2024-03-11 18:54:30 +01:00
|
|
|
(pkgs.discord.override {
|
|
|
|
withOpenASAR = true;
|
|
|
|
withVencord = true;
|
|
|
|
})
|
|
|
|
vesktop
|
2024-03-01 16:02:40 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
home.sessionVariables = {
|
2024-03-09 21:24:44 +01:00
|
|
|
EDITOR = "${pkgs.neovim}/bin/nvim";
|
2024-03-01 18:07:00 +01:00
|
|
|
};
|
|
|
|
|
2024-03-09 11:07:51 +01:00
|
|
|
xdg.enable = true;
|
|
|
|
|
2024-03-01 18:18:48 +01:00
|
|
|
services.nextcloud-client.enable = true;
|
|
|
|
|
2024-03-01 16:02:40 +01:00
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|