2023-03-15 19:47:58 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2023-04-04 12:08:13 +02:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
2023-10-17 12:15:41 +02:00
|
|
|
../../modules-old/hardware/nvidia.nix
|
2023-04-04 12:08:13 +02:00
|
|
|
];
|
2023-10-17 23:14:25 +02:00
|
|
|
|
|
|
|
sisyphus = {
|
|
|
|
users.tdpeuter.enable = true;
|
|
|
|
|
|
|
|
programs = {
|
|
|
|
home-manager.enable = true;
|
2023-10-18 20:58:49 +02:00
|
|
|
sops.enable = true;
|
2023-10-18 18:54:27 +02:00
|
|
|
ssh.enable = true;
|
2023-10-18 17:03:24 +02:00
|
|
|
zellij.enable = true;
|
2023-10-01 16:56:12 +02:00
|
|
|
};
|
2023-10-19 20:58:15 +02:00
|
|
|
services = {
|
|
|
|
desktop.gnome.enable = true;
|
|
|
|
printing.enable = true;
|
|
|
|
};
|
2023-10-17 23:14:25 +02:00
|
|
|
};
|
2023-10-01 16:56:12 +02:00
|
|
|
|
2023-10-17 23:14:25 +02:00
|
|
|
boot = {
|
|
|
|
# Encryption
|
2023-10-01 16:56:12 +02:00
|
|
|
initrd = {
|
|
|
|
# Setup keyfile
|
|
|
|
secrets."/crypto_keyfile.bin" = null;
|
|
|
|
|
|
|
|
# Enable swap on luks
|
|
|
|
luks.devices."luks-3825c43c-6cc4-4846-b1cc-02b5938640c9" = {
|
|
|
|
device = "/dev/disk/by-uuid/3825c43c-6cc4-4846-b1cc-02b5938640c9";
|
|
|
|
keyFile = "/crypto_keyfile.bin";
|
|
|
|
};
|
2023-03-15 19:47:58 +01:00
|
|
|
};
|
2023-10-17 23:14:25 +02:00
|
|
|
|
|
|
|
# Use the systemd-boot EFI boot loader.]
|
|
|
|
loader = {
|
|
|
|
systemd-boot.enable = true;
|
|
|
|
efi = {
|
|
|
|
canTouchEfiVariables = true;
|
|
|
|
efiSysMountPoint = "/boot/efi";
|
|
|
|
};
|
|
|
|
};
|
2023-03-22 22:12:19 +01:00
|
|
|
};
|
|
|
|
|
2023-10-17 23:14:25 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
2023-10-18 17:57:00 +02:00
|
|
|
git
|
2023-10-17 23:14:25 +02:00
|
|
|
wget
|
2023-10-18 17:57:00 +02:00
|
|
|
zenith-nvidia
|
2023-10-17 23:14:25 +02:00
|
|
|
];
|
|
|
|
|
2023-10-18 18:54:27 +02:00
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
|
|
|
|
networking.hostName = "Tibo-NixFat";
|
|
|
|
|
|
|
|
services = {
|
|
|
|
# Handle the laptop lid switch as follows:
|
|
|
|
logind = {
|
|
|
|
lidSwitch = "hybrid-sleep";
|
|
|
|
lidSwitchExternalPower = "lock";
|
|
|
|
lidSwitchDocked = "ignore";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-10-17 23:14:25 +02:00
|
|
|
system.stateVersion = "23.05";
|
|
|
|
|
2023-10-18 18:54:27 +02:00
|
|
|
time.timeZone = "Europe/Brussels";
|
|
|
|
|
2023-10-17 23:14:25 +02:00
|
|
|
# --- Barrier ---
|
|
|
|
|
2023-10-01 16:56:12 +02:00
|
|
|
networking = {
|
|
|
|
networkmanager.enable = true;
|
|
|
|
};
|
2023-04-04 12:08:13 +02:00
|
|
|
|
2023-03-22 22:12:19 +01:00
|
|
|
# Enable sound with pipewire.
|
2023-03-15 19:47:58 +01:00
|
|
|
sound.enable = true;
|
2023-03-22 22:12:19 +01:00
|
|
|
hardware.pulseaudio.enable = false;
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
services.pipewire = {
|
|
|
|
enable = true;
|
|
|
|
alsa.enable = true;
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
pulse.enable = true;
|
|
|
|
# If you want to use JACK applications, uncomment this
|
|
|
|
#jack.enable = true;
|
2023-04-04 12:08:13 +02:00
|
|
|
|
2023-03-22 22:12:19 +01:00
|
|
|
# use the example session manager (no others are packaged yet so this is enabled by default,
|
|
|
|
# no need to redefine it in your config for now)
|
|
|
|
#media-session.enable = true;
|
|
|
|
};
|
2023-06-14 17:17:06 +02:00
|
|
|
|
2023-10-18 18:54:27 +02:00
|
|
|
# Enable touchpad support (enabled default in most desktopManager).
|
|
|
|
services.xserver = {
|
|
|
|
libinput.enable = true;
|
2023-10-01 16:56:12 +02:00
|
|
|
};
|
|
|
|
|
2023-03-22 22:12:19 +01:00
|
|
|
# Allow unfree packages
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
2023-03-15 19:47:58 +01:00
|
|
|
}
|