2024-01-19 10:36:36 +00: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’).
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[
|
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
# Fonts
|
|
|
|
|
../modules/personal/fonts
|
|
|
|
|
# Encrypted DNS
|
|
|
|
|
../modules/services/edns
|
2024-07-08 12:16:49 +00:00
|
|
|
|
# Wireless card
|
|
|
|
|
./wireless.nix
|
2024-01-19 10:36:36 +00:00
|
|
|
|
];
|
|
|
|
|
|
2024-08-15 16:37:13 +00:00
|
|
|
|
# Sops
|
|
|
|
|
common.linux.sops.enable = true;
|
|
|
|
|
common.linux.sops.file = ./secrets.yaml;
|
|
|
|
|
|
2024-08-19 14:04:52 +00:00
|
|
|
|
sops.secrets."nix-build-farm/private-key" = { mode = "0400"; };
|
|
|
|
|
services.nix-build-farm.hostname = "framework";
|
|
|
|
|
services.nix-build-farm.privateKeyFile = config.sops.secrets."nix-build-farm/private-key".path;
|
|
|
|
|
|
2024-05-27 09:03:15 +00:00
|
|
|
|
# services.xserver.enable = true;
|
|
|
|
|
# services.xserver.displayManager.sddm.enable = true;
|
|
|
|
|
# services.xserver.displayManager.sddm.wayland.enable = true;
|
2024-08-02 16:27:48 +00:00
|
|
|
|
services.desktopManager.plasma6.enable = true;
|
2024-01-19 10:36:36 +00:00
|
|
|
|
|
|
|
|
|
# Power Management
|
|
|
|
|
services.upower = {
|
|
|
|
|
enable = true;
|
2024-02-02 12:18:38 +00:00
|
|
|
|
criticalPowerAction = "Hibernate";
|
2024-01-19 10:36:36 +00:00
|
|
|
|
|
|
|
|
|
usePercentageForPolicy = true;
|
|
|
|
|
percentageCritical = 3;
|
|
|
|
|
percentageLow = 10;
|
|
|
|
|
};
|
2024-01-28 14:08:20 +00:00
|
|
|
|
services.power-profiles-daemon.enable = true;
|
2024-01-19 10:36:36 +00:00
|
|
|
|
# powerManagement.enable = true;
|
|
|
|
|
# powerManagement.powertop.enable = true;
|
2024-09-28 12:25:10 +00:00
|
|
|
|
services.logind.lidSwitch = "suspend-then-hibernate";
|
2024-01-19 10:36:36 +00:00
|
|
|
|
|
|
|
|
|
# Printing
|
|
|
|
|
services.printing.drivers = with pkgs; [ epfl-cups-drivers ];
|
|
|
|
|
|
|
|
|
|
# Enable touchpad support (enabled default in most desktopManager).
|
2024-08-02 16:27:48 +00:00
|
|
|
|
services.libinput.enable = true;
|
2024-01-19 10:36:36 +00:00
|
|
|
|
# Keyboard
|
|
|
|
|
services.input-remapper.enable = true;
|
|
|
|
|
services.input-remapper.serviceWantedBy = [ "multi-user.target" ];
|
|
|
|
|
hardware.uinput.enable = true;
|
|
|
|
|
|
|
|
|
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
|
|
|
common.linux.username = "nki";
|
|
|
|
|
|
|
|
|
|
# Networking
|
|
|
|
|
common.linux.networking = {
|
|
|
|
|
hostname = "nki-framework";
|
|
|
|
|
networks."10-wired".match = "enp*";
|
|
|
|
|
networks."20-wireless".match = "wlan*";
|
|
|
|
|
dnsServers = [ "127.0.0.1" ];
|
|
|
|
|
};
|
|
|
|
|
nki.services.edns.enable = true;
|
|
|
|
|
nki.services.edns.ipv6 = true;
|
|
|
|
|
|
|
|
|
|
# Backup home
|
|
|
|
|
services.btrbk.extraPackages = with pkgs; [ sudo ];
|
|
|
|
|
services.btrbk.instances.home = {
|
|
|
|
|
onCalendar = "hourly";
|
|
|
|
|
settings = {
|
|
|
|
|
snapshot_preserve = "24h 30d 6m 1y";
|
|
|
|
|
snapshot_preserve_min = "7d";
|
|
|
|
|
volume."/" = {
|
|
|
|
|
subvolume.home.snapshot_name = ".backups-home";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Enable fingerprint auth for some stuff
|
|
|
|
|
security.pam.services.sudo.fprintAuth = true;
|
|
|
|
|
security.pam.services.swaylock.fprintAuth = true;
|
|
|
|
|
security.pam.services.login.fprintAuth = true;
|
|
|
|
|
|
2024-08-15 16:37:13 +00:00
|
|
|
|
# tinc network
|
|
|
|
|
sops.secrets."tinc-private-key" = { };
|
|
|
|
|
services.my-tinc = {
|
|
|
|
|
enable = true;
|
|
|
|
|
hostName = "framework";
|
|
|
|
|
ed25519PrivateKey = config.sops.secrets."tinc-private-key".path;
|
|
|
|
|
bindPort = 6565;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2024-01-19 10:36:36 +00:00
|
|
|
|
# Secrets
|
|
|
|
|
# sops.defaultSopsFile = ./secrets.yaml;
|
|
|
|
|
# sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
|
|
|
|
|
|
|
|
|
## tinc
|
|
|
|
|
# sops.secrets."tinc/ed25519-private-key" = { };
|
|
|
|
|
# services.my-tinc = {
|
|
|
|
|
# enable = true;
|
|
|
|
|
# hostName = "macbooknix";
|
|
|
|
|
# ed25519PrivateKey = config.sops.secrets."tinc/ed25519-private-key".path;
|
|
|
|
|
# bindPort = 6565;
|
|
|
|
|
# };
|
|
|
|
|
|
|
|
|
|
services.dbus.packages = with pkgs; [ gcr ];
|
|
|
|
|
|
|
|
|
|
# Open ports in the firewall.
|
|
|
|
|
# networking.firewall.allowedTCPPorts = [ ... ];
|
|
|
|
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
|
|
|
|
# Or disable the firewall altogether.
|
|
|
|
|
# networking.firewall.enable = false;
|
|
|
|
|
|
|
|
|
|
# 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 value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
|
|
|
system.stateVersion = "22.05"; # Did you read the comment?
|
|
|
|
|
}
|
|
|
|
|
|