dotfiles-guix/home/nix/home.nix

31 lines
462 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 = "24.05";
packages = with pkgs; [
# desktop
starship
discord
thunderbird
# devlopment
rustup
gcc
openssl
];
};
}