mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
I broke out host specific bits from the configuration that should be common to all hosts of a given type.
49 lines
No EOL
769 B
Nix
49 lines
No EOL
769 B
Nix
{ config, pkgs, ... }: {
|
|
imports = [
|
|
./internationalisation.nix
|
|
];
|
|
|
|
environment = {
|
|
shells = with pkgs; [ bash zsh ];
|
|
systemPackages = with pkgs; [
|
|
angryipscanner
|
|
dconf2nix
|
|
file
|
|
neofetch
|
|
python3
|
|
tailscale
|
|
];
|
|
};
|
|
|
|
fonts.fontDir.enable = false;
|
|
fonts.packages = with pkgs; [
|
|
font-awesome
|
|
(nerdfonts.override {
|
|
fonts = [
|
|
"Hack"
|
|
"SourceCodePro"
|
|
];
|
|
})
|
|
];
|
|
|
|
nix.settings = {
|
|
experimental-features = [
|
|
"flakes"
|
|
"nix-command"
|
|
];
|
|
};
|
|
|
|
programs = {
|
|
zsh.enable = true;
|
|
};
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
|
|
services.tailscale = {
|
|
enable = true;
|
|
};
|
|
|
|
time.timeZone = "America/New_York";
|
|
|
|
users.defaultUserShell = pkgs.zsh;
|
|
} |