will it blend?
This commit is contained in:
commit
6d3c3fb304
4 changed files with 172 additions and 0 deletions
68
configuration.nix
Normal file
68
configuration.nix
Normal 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";
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue