will it blend?

This commit is contained in:
Till 2023-05-09 22:42:40 +02:00
commit 6d3c3fb304
4 changed files with 172 additions and 0 deletions

68
configuration.nix Normal file
View file

@ -0,0 +1,68 @@
{ 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";
}