119 lines
2.2 KiB
Nix
119 lines
2.2 KiB
Nix
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
|
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
mods,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disks.nix
|
|
];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.supportedFilesystems = [ "bcachefs" ];
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
time.timeZone = "Europe/Paris";
|
|
|
|
networking = {
|
|
interfaces."enp1s0" = {
|
|
useDHCP = false;
|
|
ipv4.addresses = [
|
|
{
|
|
address = "192.168.122.6";
|
|
prefixLength = 24;
|
|
}
|
|
];
|
|
ipv6.addresses = [
|
|
{
|
|
address = "fe80::6";
|
|
prefixLength = 64;
|
|
}
|
|
];
|
|
};
|
|
defaultGateway = "192.168.122.1";
|
|
defaultGateway6 = {
|
|
address = "fe80::1";
|
|
interface = "enp1s0";
|
|
};
|
|
nameservers = [
|
|
"192.168.122.1"
|
|
"fe80::1%enp1s0"
|
|
];
|
|
};
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
console = {
|
|
font = "Lat2-Terminus16";
|
|
keyMap = "fr";
|
|
};
|
|
|
|
services.dbus.packages = with pkgs; [ dconf ];
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
nix-search-cli
|
|
git
|
|
btop
|
|
ranger
|
|
screen
|
|
tree
|
|
];
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
|
|
services.openssh.enable = true;
|
|
|
|
networking.firewall.enable = false;
|
|
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults.email = "root@katvayor.net";
|
|
};
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts = {
|
|
"orchid.katvayor.net" = {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations."/static/" = {
|
|
alias = "/srv/orchid/";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
services.wordpress = {
|
|
webserver = "nginx";
|
|
sites."orchid.katvayor.net" = { };
|
|
};
|
|
fileSystems."/home/orchid/content/www" = {
|
|
device = "/srv/orchid";
|
|
options = [ "bind" ];
|
|
};
|
|
|
|
users.users.orchid = {
|
|
isNormalUser = true;
|
|
shell = pkgs.zsh;
|
|
};
|
|
home-manager.users.orchid = {
|
|
home.stateVersion = "23.11";
|
|
imports = with mods.home; [
|
|
neovim
|
|
zsh
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|