dotfiles-guix/home/nix/home.nix

40 lines
594 B
Nix
Raw Normal View History

{ config, pkgs, ... }: {
2024-11-03 18:28:10 +00:00
imports = [
./programs
];
news.display = "silent";
fonts.fontconfig.enable = true;
nixpkgs.config.allowUnfree = true;
programs.home-manager.enable = true;
home = {
username = "freya";
homeDirectory = "/home/freya";
stateVersion = "25.05";
2024-11-03 18:28:10 +00:00
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
# unity
unityhub
# libs
openssl
libgcc
2024-11-03 18:28:10 +00:00
];
};
}