dotfiles-guix/home/nix/home.nix

32 lines
442 B
Nix
Raw Normal View History

2025-01-03 14:21:31 +00:00
{ config, pkgs, ... }:
{
2024-11-03 18:28:10 +00:00
imports = [
2025-01-03 14:21:31 +00:00
./programs/firefox.nix
./programs/home-manager.nix
2024-11-03 18:28:10 +00:00
];
news.display = "silent";
fonts.fontconfig.enable = true;
nixpkgs.config.allowUnfree = true;
home = {
packages = with pkgs; [
2025-01-03 02:47:37 +00:00
# shell
2024-11-03 18:28:10 +00:00
starship
2025-01-03 02:47:37 +00:00
# desktop
2024-11-03 18:28:10 +00:00
discord
element-desktop
2024-11-03 18:28:10 +00:00
thunderbird
2025-01-03 02:47:37 +00:00
# rust
rustc
rustfmt
rust-analyzer
cargo
clippy
2024-11-03 18:28:10 +00:00
];
};
}