Merge branch 'main' of github.com:LarssonMartin1998/.dotfiles

This commit is contained in:
Martin Larsson 2025-05-11 20:42:37 +02:00
commit 0ff714cd02
25 changed files with 549 additions and 237 deletions

18
nix/home/linux_x86.nix Normal file
View file

@ -0,0 +1,18 @@
{
pkgs,
...
}:
let
discord_wrapped = pkgs.writeShellScriptBin "discord" ''
#!${pkgs.runtimeShell}
exec "${pkgs.discord}/bin/discord" "$@" >/dev/null 2>&1
'';
in
{
home = {
packages = with pkgs; [
discord_wrapped
spotify
];
};
}