31 lines
442 B
Nix
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
|
|
];
|
|
};
|
|
}
|
|
|