dotfiles-guix/home/nix/home.nix
Freya Murphy 1c632d6245
Some checks failed
installer / build (push) Failing after 37m49s
refactor nix a bit
2025-01-03 09:21:31 -05:00

31 lines
442 B
Nix

{ config, pkgs, ... }:
{
imports = [
./programs/firefox.nix
./programs/home-manager.nix
];
news.display = "silent";
fonts.fontconfig.enable = true;
nixpkgs.config.allowUnfree = true;
home = {
packages = with pkgs; [
# shell
starship
# desktop
discord
element-desktop
thunderbird
# rust
rustc
rustfmt
rust-analyzer
cargo
clippy
];
};
}