2024-03-01 16:02:40 +01:00
|
|
|
{
|
2024-03-01 16:19:41 +01:00
|
|
|
pkgs,
|
2024-04-05 21:12:59 +02:00
|
|
|
inputs,
|
2024-03-01 16:19:41 +01:00
|
|
|
...
|
2024-03-21 14:48:55 +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";
|
|
|
|
|
|
|
|
# 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
|
|
|
|
nextcloud-client
|
|
|
|
firefox
|
|
|
|
thunderbird
|
2024-03-01 19:16:28 +01:00
|
|
|
xournalpp
|
2024-03-02 00:06:23 +01:00
|
|
|
prismlauncher
|
|
|
|
steam
|
|
|
|
blender
|
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-08 23:59:44 +01:00
|
|
|
libqalculate
|
|
|
|
sops
|
2024-03-09 23:49:44 +01:00
|
|
|
pwvucontrol
|
|
|
|
qpwgraph
|
2024-03-21 14:33:45 +01:00
|
|
|
discord
|
2024-03-18 10:42:49 +01:00
|
|
|
libreoffice-fresh
|
2024-03-19 10:44:42 +01:00
|
|
|
mate.caja
|
2024-03-21 14:33:45 +01:00
|
|
|
libsForQt5.okular
|
2024-03-19 14:10:20 +01:00
|
|
|
mpv
|
|
|
|
gimp
|
2024-03-19 15:14:44 +01:00
|
|
|
freecad
|
2024-03-21 14:49:42 +01:00
|
|
|
flatpak
|
2024-04-05 13:19:28 +02:00
|
|
|
wine
|
2024-04-07 11:56:15 +02:00
|
|
|
unstable.gyroflow
|
2024-04-11 08:40:50 +02:00
|
|
|
prusa-slicer
|
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-27 15:18:56 +01:00
|
|
|
services.udiskie = {
|
|
|
|
enable = true;
|
|
|
|
automount = true;
|
|
|
|
notify = true;
|
|
|
|
};
|
|
|
|
|
2024-03-01 16:02:40 +01:00
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
2024-03-14 10:07:34 +01:00
|
|
|
|
|
|
|
programs.direnv = {
|
|
|
|
enable = true;
|
|
|
|
enableBashIntegration = true;
|
|
|
|
enableZshIntegration = true;
|
|
|
|
};
|
2024-03-01 16:02:40 +01:00
|
|
|
}
|