system folder

This commit is contained in:
Till 2023-05-13 11:33:23 +02:00
parent c653be7cf2
commit fed5be1bd3
4 changed files with 2 additions and 2 deletions

View file

@ -1,52 +0,0 @@
{ 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; [];
shell = pkgs.fish;
};
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";
}