omniflake/configuration.nix

51 lines
829 B
Nix

{ config, pkgs, ... }:
{
imports =
[
./interception-tools.nix
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.networkmanager.enable = true;
time.timeZone = "Europe/Berlin";
sound.enable = true;
hardware.pulseaudio.enable = true;
users.users.till = {
isNormalUser = true;
extraGroups = [
"wheel"
"networkmanager"
];
packages = with pkgs; [];
};
environment.systemPackages = with pkgs; [
neovim
wget
git
foot
wofi
pipewire
];
fonts.fonts = with pkgs; [
jetbrains-mono
];
services = {
dbus.enable = true;
openssh.enable = true;
printing.enable = true;
};
system.stateVersion = "22.11";
}