dotfiles-guix/home/nix/home.nix

39 lines
594 B
Nix

{ config, pkgs, ... }: {
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";
packages = with pkgs; [
# shell
starship
# desktop
discord
element-desktop
thunderbird
# rust
rustc
rustfmt
rust-analyzer
cargo
clippy
# unity
unityhub
# libs
openssl
libgcc
];
};
}