.dotfiles/nix/home/linux.nix
Martin Larsson c4d7f5d082 Major refactor to flake, abstract non-trivial packages into their own
files (such as firefox/spotify-qt+librespot), create utils for reusable
function library
2025-05-11 18:19:19 +02:00

51 lines
633 B
Nix

{
pkgs,
config,
...
}:
let
utils = import ../utils.nix;
dotfiles = [
[
".config/sway"
"sway"
]
[
".config/wofi"
"wofi"
]
];
pythonEnv = pkgs.python3.withPackages (
ps: with ps; [
i3ipc
]
);
in
{
imports = [
./common/firefox.nix
];
home = {
packages = with pkgs; [
pythonEnv
wl-clipboard-rs
clang
clang-tools
gimp3
ghostty
mullvad
thunderbird
wofi
grim
slurp
pavucontrol
blueman
playerctl
];
file = utils.mk_symlinks { inherit config dotfiles; };
};
}