56 lines
969 B
Nix
56 lines
969 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./bash
|
|
./neovim
|
|
./firefox
|
|
./ssh
|
|
./syncthing
|
|
./alacritty
|
|
./keepassxc
|
|
./git
|
|
./direnv
|
|
./thunderbird
|
|
./fzf
|
|
];
|
|
|
|
home = {
|
|
username = "pim";
|
|
homeDirectory = "/home/pim";
|
|
stateVersion = "23.05";
|
|
|
|
packages = with pkgs; [
|
|
moonlight-qt
|
|
vlc
|
|
nicotine-plus
|
|
logseq
|
|
signal-desktop
|
|
telegram-desktop
|
|
strawberry
|
|
gimp
|
|
libreoffice
|
|
];
|
|
};
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
chromium.enable = true;
|
|
};
|
|
|
|
# Let home-manager manage the X session
|
|
xsession = {
|
|
enable = true;
|
|
};
|
|
|
|
xdg.userDirs.enable = true;
|
|
|
|
# homeage = {
|
|
# identityPaths = [ "/home/pim/Downloads/rage/homeage-test/identity.txt" ];
|
|
# installationType = "systemd";
|
|
# file."helloworld" = {
|
|
# source = ./homeage-test/source.txt.age;
|
|
# symlinks = [ "/home/pim/Downloads/rage/homeage-test/result2.txt" ];
|
|
# };
|
|
# };
|
|
}
|