2021-04-16 21:33:48 +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
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
{
|
2022-04-10 11:54:58 +02:00
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
|
|
|
|
imports = [
|
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
|
|
|
|
|
./home.nix
|
|
|
|
|
|
|
|
|
|
./secrets.nix
|
|
|
|
|
];
|
2021-04-16 21:33:48 +02:00
|
|
|
|
|
2022-10-25 19:55:32 +02:00
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages;
|
2021-06-10 04:40:45 +02:00
|
|
|
|
|
2021-04-16 21:33:48 +02:00
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
2022-06-08 06:14:31 +02:00
|
|
|
|
boot.tmpOnTmpfs = true;
|
|
|
|
|
|
2021-04-27 18:17:06 +02:00
|
|
|
|
boot.supportedFilesystems = [
|
|
|
|
|
"btrfs"
|
|
|
|
|
"ntfs"
|
|
|
|
|
];
|
|
|
|
|
|
2021-04-16 21:33:48 +02:00
|
|
|
|
services.btrfs = {
|
|
|
|
|
autoScrub = {
|
|
|
|
|
enable = true;
|
2022-04-10 11:54:58 +02:00
|
|
|
|
fileSystems = ["/"];
|
2021-04-16 21:33:48 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
networking.hostName = "boreal"; # Define your hostname.
|
|
|
|
|
networking.domain = "alarsyo.net";
|
|
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "Europe/Paris";
|
|
|
|
|
|
|
|
|
|
# List services that you want to enable:
|
|
|
|
|
my.services = {
|
2022-01-21 00:29:44 +01:00
|
|
|
|
restic-backup = {
|
2021-04-23 20:38:22 +02:00
|
|
|
|
enable = true;
|
2022-01-21 00:29:44 +01:00
|
|
|
|
repo = "b2:boreal-backup";
|
|
|
|
|
passwordFile = config.age.secrets."restic-backup/boreal-password".path;
|
|
|
|
|
environmentFile = config.age.secrets."restic-backup/boreal-credentials".path;
|
|
|
|
|
|
2021-04-23 20:38:22 +02:00
|
|
|
|
paths = [
|
|
|
|
|
"/home/alarsyo"
|
|
|
|
|
];
|
|
|
|
|
exclude = [
|
|
|
|
|
"/home/alarsyo/Downloads"
|
|
|
|
|
|
|
|
|
|
# Rust builds using half my storage capacity
|
2022-01-17 23:39:45 +01:00
|
|
|
|
"/home/alarsyo/**/target"
|
2021-06-17 02:47:34 +02:00
|
|
|
|
"/home/alarsyo/work/rust/build"
|
2021-04-23 20:38:22 +02:00
|
|
|
|
|
2021-06-17 10:58:24 +02:00
|
|
|
|
# don't backup nixpkgs
|
|
|
|
|
"/home/alarsyo/work/nixpkgs"
|
|
|
|
|
|
2021-04-23 20:38:22 +02:00
|
|
|
|
# C build crap
|
|
|
|
|
"*.a"
|
|
|
|
|
"*.o"
|
|
|
|
|
"*.so"
|
|
|
|
|
|
|
|
|
|
# ignore all dotfiles as .config and .cache can become quite big
|
2021-08-13 18:39:20 +02:00
|
|
|
|
"/home/alarsyo/.*"
|
2021-04-23 20:38:22 +02:00
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2021-05-26 00:33:52 +02:00
|
|
|
|
pipewire.enable = true;
|
|
|
|
|
|
2021-07-13 23:48:41 +02:00
|
|
|
|
tailscale.enable = true;
|
2021-04-16 21:33:48 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services = {
|
2022-11-14 23:46:17 +01:00
|
|
|
|
openssh.enable = true;
|
2021-04-16 21:33:48 +02:00
|
|
|
|
};
|
2022-01-07 17:44:30 +01:00
|
|
|
|
my.gui = {
|
|
|
|
|
enable = true;
|
|
|
|
|
isNvidia = true;
|
|
|
|
|
};
|
2021-04-22 14:22:55 +02:00
|
|
|
|
|
2021-08-21 12:00:56 +02:00
|
|
|
|
my.wakeonwlan.interfaces.phy0.methods = [
|
|
|
|
|
"magic-packet"
|
|
|
|
|
"disconnect"
|
|
|
|
|
"gtk-rekey-failure"
|
|
|
|
|
"eap-identity-request"
|
|
|
|
|
"rfkill-release"
|
|
|
|
|
];
|
|
|
|
|
|
2022-09-24 00:14:38 +02:00
|
|
|
|
services.udev.packages = [pkgs.chrysalis];
|
2021-06-10 03:15:02 +02:00
|
|
|
|
|
2021-04-17 03:15:44 +02:00
|
|
|
|
hardware.bluetooth = {
|
|
|
|
|
enable = true;
|
2021-07-05 12:30:19 +02:00
|
|
|
|
powerOnBoot = false;
|
2021-04-17 03:15:44 +02:00
|
|
|
|
};
|
2021-04-16 21:33:48 +02:00
|
|
|
|
}
|