sisyphus/nixos/hosts/Tibo-NixFat/default.nix

104 lines
2.1 KiB
Nix
Raw Normal View History

2023-03-15 19:47:58 +01:00
{ config, pkgs, ... }:
{
2023-04-04 12:08:13 +02:00
imports = [
./hardware-configuration.nix
2023-10-20 20:29:11 +02:00
../../modules-old
2023-04-04 12:08:13 +02:00
];
2023-10-17 23:14:25 +02:00
sisyphus = {
users.tdpeuter.enable = true;
2023-10-20 22:28:37 +02:00
hardware.nvidia.enable = true;
hardware.nvidia.model = "T2000";
2023-10-17 23:14:25 +02:00
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-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-19 22:24:04 +02:00
vim
2023-10-20 20:10:35 +02:00
w3m
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-19 22:24:04 +02:00
programs = {
zsh.enable = true;
};
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-19 22:24:33 +02:00
# Touchpad
xserver.libinput.enable = true;
2023-10-18 18:54:27 +02:00
};
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-03-15 19:47:58 +01:00
}