dotfiles/nixos/common.nix

72 lines
1.5 KiB
Nix
Raw Normal View History

2022-03-02 12:45:32 +00:00
{ config, pkgs, lib, inputs, nixpkgs-nixos-unstable-and-unfree, ... }:
2021-05-30 20:41:33 +01:00
{
imports =
[
./common-hardware.nix
./common-services.nix
./security.nix
./syncthing.nix
];
2019-03-26 10:12:24 +00:00
2021-11-22 19:32:26 +00:00
security.allowUserNamespaces = true;
2020-02-16 09:23:31 +00:00
2021-11-22 19:32:26 +00:00
environment.enableDebugInfo = true;
2021-06-12 16:15:00 +01:00
2021-11-22 19:32:26 +00:00
environment.systemPackages = with pkgs; [
wget
git
gnupg
curl
tmux
htop
atop
home-manager
pciutils
powertop
fd
dnsutils
usbutils
2022-03-02 12:45:32 +00:00
nixpkgs-nixos-unstable-and-unfree.veracrypt
2021-11-22 19:32:26 +00:00
];
i18n.defaultLocale = "en_GB.UTF-8";
users.users.cyryl = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "video" "scanner" "lp" "docker" "vboxusers" "adbusers" "libvirtd" "dialout" "wireshark" ];
shell = pkgs.zsh;
};
2022-03-06 09:41:19 +00:00
networking.nameservers = [ "91.239.100.100" "89.233.43.71" "1.1.1.1" "8.8.8.8" ];
2021-11-22 19:32:26 +00:00
networking.hosts = {
"10.11.99.1" = [ "remarkable" ];
};
programs.light.enable = true;
programs.adb.enable = true;
programs.wireshark.enable = true;
virtualisation.docker = {
enable = true;
autoPrune.enable = true;
};
2022-03-04 09:12:08 +00:00
fonts.fontconfig.enable = true;
2021-11-22 19:32:26 +00:00
fonts.fonts = with pkgs; [ powerline-fonts weather-icons material-icons source-code-pro fira-code noto-fonts-emoji emojione iosevka font-awesome nerdfonts ];
nix = {
autoOptimiseStore = true;
gc.automatic = true;
optimise.automatic = true;
package = pkgs.nixUnstable;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
2019-03-26 12:32:59 +00:00
2021-11-22 19:32:26 +00:00
system = {
stateVersion = "20.03";
};
}