dotfiles/NixOS/configuration.nix

79 lines
2.5 KiB
Nix
Raw Normal View History

2024-05-31 12:41:57 +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`).
2024-05-31 22:25:50 +02:00
{ config, inputs, lib, pkgs, ... }:
2024-05-31 12:41:57 +02:00
{
2024-05-31 14:55:36 +02:00
imports = [
./hardware-configuration.nix
2024-05-31 12:41:57 +02:00
];
2024-05-31 14:55:36 +02:00
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-05-31 22:25:50 +02:00
time.timeZone = "Europe/Brussels";
2024-05-31 14:55:36 +02:00
networking.hostName = "nixos"; # 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-05-31 22:25:50 +02:00
# System Packages
programs.zsh.enable = true;
programs.hyprland.enable = true;
2024-05-31 14:55:36 +02:00
# Pipewire
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
users.users.user = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
2024-05-31 15:03:11 +02:00
openssh.authorizedKeys.keys = [
2024-05-31 14:55:36 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKAa3tMzSCRuprEACrBsKI0F/o73o6J9L1qR3TaZn/N8 user@Kell"
2024-05-31 15:03:11 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBxMq4kubz4wWr4S8xU3GRkPcn6XRS3y7IP+qylN5QAp user@Aloria"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHtzTFdvLEvXpv69qAWLTipl4hgsKgRrRrWJRecsFthG user@Riva"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOxtJRtlAphl8euicVUR/6C7o+tyhpYmcbMBLHnldEIX server@mallorea"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILazQU/Y9I5PkMZoG/Lzc6mDR7s+aRHzqJoFUhYSse4P PocoF1"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFoUYcVMsDw6tmjfdOuQkwaXx8fohKJs/6/5HoLzTP6x Tablet"
];
shell = pkgs.zsh;
2024-05-31 14:55:36 +02:00
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
environment.systemPackages = with pkgs; [
wget
2024-05-31 15:03:11 +02:00
git
curl
2024-05-31 14:04:54 +02:00
];
2024-05-31 14:55:36 +02:00
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
};
};
networking.firewall.enable = false;
2024-05-31 22:25:50 +02:00
system.stateVersion = "23.11";
environment.sessionVariables.NIXOS_OZONE_WL = "1"; #hint electron apps to use wayland:
2024-06-01 16:52:20 +02:00
# Fonts
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
iosevka
nerdfonts
];
2024-05-31 12:41:57 +02:00
}