This repository has been archived on 2023-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-home/home.nix

49 lines
679 B
Nix
Raw Permalink Normal View History

2023-10-08 09:44:31 +00:00
{ pkgs, ... }:
2023-09-24 12:57:48 +00:00
{
2023-10-08 09:44:31 +00:00
imports = [
./bash
./neovim
./firefox
./ssh
./syncthing
./alacritty
./keepassxc
./git
./direnv
./thunderbird
./fzf
];
2023-09-24 12:57:48 +00:00
home = {
username = "pim";
2023-10-08 09:44:31 +00:00
homeDirectory = "/home/pim";
2023-09-24 13:50:50 +00:00
stateVersion = "23.05";
2023-09-24 12:57:48 +00:00
packages = with pkgs; [
moonlight-qt
2023-09-29 20:54:59 +00:00
vlc
nicotine-plus
2023-09-30 11:30:07 +00:00
logseq
signal-desktop
telegram-desktop
2023-09-30 12:01:36 +00:00
strawberry
tree
gimp
libreoffice
2023-09-24 12:57:48 +00:00
];
};
programs = {
home-manager.enable = true;
2023-10-01 08:21:13 +00:00
chromium.enable = true;
2023-09-24 12:57:48 +00:00
};
# Let home-manager manage the X session
xsession = {
enable = true;
};
2023-10-08 09:44:31 +00:00
xdg.userDirs.enable = true;
2023-09-24 12:57:48 +00:00
}