60 lines
1 KiB
Nix
60 lines
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";
|
|
|
|
users.users.till = {
|
|
isNormalUser = true;
|
|
description = "Till";
|
|
extraGroups = [
|
|
"wheel"
|
|
"networkmanager"
|
|
];
|
|
packages = with pkgs; [];
|
|
shell = pkgs.fish;
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
nixpkgs.config.joypixels.acceptLicense = true;
|
|
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
pinentryFlavor = "curses";
|
|
# enableSSHSupport = true;
|
|
};
|
|
|
|
programs.fish.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
neovim
|
|
wget
|
|
git
|
|
firefox
|
|
foot
|
|
];
|
|
|
|
fonts.fonts = with pkgs; [
|
|
jetbrains-mono
|
|
joypixels
|
|
];
|
|
|
|
services = {
|
|
dbus.enable = true;
|
|
openssh.enable = true;
|
|
printing.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "22.11";
|
|
}
|