2024-07-08 19:11:59 +02:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page, on
|
|
|
|
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
./server-configuration.nix
|
2024-07-14 15:48:01 +02:00
|
|
|
|
"${(import ./nix/sources.nix).sops-nix}/modules/sops"
|
2024-07-08 19:11:59 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# Use the GRUB 2 boot loader.
|
2024-07-14 15:48:01 +02:00
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
|
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
|
|
|
|
|
boot.kernelParams = [ "console=ttyS0" ];
|
2024-07-08 19:11:59 +02:00
|
|
|
|
|
2024-07-14 15:48:01 +02:00
|
|
|
|
services.qemuGuest.enable = true;
|
|
|
|
|
networking.hostName = "sisyphe"; # Define your hostname.
|
|
|
|
|
# Pick only one of the below networking options.
|
|
|
|
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
|
|
|
# networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
2024-07-08 19:11:59 +02:00
|
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = lib.mkDefault "Europe/Paris";
|
|
|
|
|
|
|
|
|
|
i18n.defaultLocale = "fr_FR.UTF-8";
|
|
|
|
|
console = {
|
|
|
|
|
font = "Lat2-Terminus16";
|
|
|
|
|
keyMap = "fr";
|
2024-07-14 15:48:01 +02:00
|
|
|
|
# useXkbConfig = true; # use xkb.options in tty.
|
2024-07-08 19:11:59 +02:00
|
|
|
|
};
|
|
|
|
|
|
2024-07-14 15:48:01 +02:00
|
|
|
|
users.users.homelab = {
|
2024-07-08 19:11:59 +02:00
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [
|
|
|
|
|
"wheel"
|
|
|
|
|
"dialout"
|
|
|
|
|
]; # Enable ‘sudo’ for the user.
|
2024-07-14 15:48:01 +02:00
|
|
|
|
|
|
|
|
|
packages = with pkgs; [
|
|
|
|
|
neovim
|
|
|
|
|
btop
|
|
|
|
|
tree
|
|
|
|
|
git
|
|
|
|
|
];
|
2024-07-08 19:11:59 +02:00
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA8sdToNavEQv7PTMJ97HIGM6UlChwGS3x9O8hFilzui harryh@ik.me"
|
|
|
|
|
];
|
2024-07-14 15:48:01 +02:00
|
|
|
|
|
|
|
|
|
initialHashedPassword = "$y$j9T$H0D6NpMw1EU.oDhbMWrwL.$wDGGBKKGQdzeDRTzq0gWhoLdyUpQ2w6PMmGl.nuQ11/";
|
2024-07-08 19:11:59 +02:00
|
|
|
|
};
|
|
|
|
|
|
2024-07-14 15:48:01 +02:00
|
|
|
|
users.users.root.initialHashedPassword = "$y$j9T$99/NEnBGoewbrl5eHvTw7/$87rjPrvqs0Ys72338SxZJDibi8p7Fe8Can37rJyhcQ.";
|
|
|
|
|
|
2024-07-08 19:11:59 +02:00
|
|
|
|
# List packages installed in system profile. To search, run:
|
2024-07-14 15:48:01 +02:00
|
|
|
|
# $ nix search wget
|
2024-07-08 19:11:59 +02:00
|
|
|
|
environment.systemPackages = with pkgs; [
|
2024-07-14 15:48:01 +02:00
|
|
|
|
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
2024-07-08 19:11:59 +02:00
|
|
|
|
curl
|
2024-07-14 15:48:01 +02:00
|
|
|
|
niv
|
2024-07-08 19:11:59 +02:00
|
|
|
|
];
|
|
|
|
|
|
2024-07-14 15:48:01 +02:00
|
|
|
|
# Some programs need SUID wrappers, can be configured further or are
|
|
|
|
|
# started in user sessions.
|
|
|
|
|
# programs.mtr.enable = true;
|
|
|
|
|
# programs.gnupg.agent = {
|
|
|
|
|
# enable = true;
|
|
|
|
|
# enableSSHSupport = true;
|
|
|
|
|
# };
|
|
|
|
|
|
|
|
|
|
# List services that you want to enable:
|
2024-07-08 19:11:59 +02:00
|
|
|
|
|
|
|
|
|
services.openssh = {
|
|
|
|
|
enable = true;
|
2024-07-14 15:48:01 +02:00
|
|
|
|
settings = {
|
|
|
|
|
PasswordAuthentication = false;
|
|
|
|
|
KbdInteractiveAuthentication = false;
|
|
|
|
|
PermitRootLogin = "no";
|
|
|
|
|
};
|
2024-07-08 19:11:59 +02:00
|
|
|
|
};
|
|
|
|
|
|
2024-07-14 15:48:01 +02:00
|
|
|
|
# Open ports in the firewall.
|
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
|
22
|
|
|
|
|
80
|
|
|
|
|
443
|
|
|
|
|
8080
|
|
|
|
|
];
|
|
|
|
|
|
2024-07-08 19:11:59 +02:00
|
|
|
|
# Copy the NixOS configuration file and link it from the resulting system
|
|
|
|
|
# (/run/current-system/configuration.nix). This is useful in case you
|
|
|
|
|
# accidentally delete configuration.nix.
|
|
|
|
|
system.copySystemConfiguration = true;
|
|
|
|
|
|
|
|
|
|
# This option defines the first version of NixOS you have installed on this particular machine,
|
|
|
|
|
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
|
|
|
|
|
#
|
|
|
|
|
# Most users should NEVER change this value after the initial install, for any reason,
|
|
|
|
|
# even if you've upgraded your system to a new NixOS release.
|
|
|
|
|
#
|
|
|
|
|
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
|
|
|
|
|
# so changing it will NOT upgrade your system - see https://nixos.org/manual/nixos/stable/#sec-upgrading for how
|
|
|
|
|
# to actually do that.
|
|
|
|
|
#
|
|
|
|
|
# This value being lower than the current NixOS release does NOT mean your system is
|
|
|
|
|
# out of date, out of support, or vulnerable.
|
|
|
|
|
#
|
|
|
|
|
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
|
|
|
|
|
# and migrated your data accordingly.
|
|
|
|
|
#
|
|
|
|
|
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
|
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
|
|
|
|
|
|
|
|
|
}
|