omniflake/configuration.nix
2023-05-09 22:42:40 +02:00

68 lines
1.1 KiB
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; [
firefox
tmux
fzf
qutebrowser
neomutt
khal
khard
rstudio
R
ruby
nodejs
vdirsyncer
];
};
environment.systemPackages = with pkgs; [
neovim
wget
pipewire
git
foot
wofi
];
fonts.fonts = with pkgs; [
jetbrains-mono
];
services = {
dbus.enable = true;
openssh.enable = true;
printing.enable = true;
};
programs.sway.enable = true;
programs.fish.enable = true;
system.copySystemConfiguration = true;
system.stateVersion = "22.11";
}