remove fucked up folder

This commit is contained in:
zoe 2022-11-12 18:10:10 +01:00
parent f01622f837
commit 2ca4566e4a
1 changed files with 0 additions and 167 deletions

167
\
View File

@ -1,167 +0,0 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs, config, ... }:
{
imports =
[
<home-manager/nixos>
./hardware-configuration.nix
./packages.nix
./home.nix
./user.nix
./services.nix
./programs.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
hardware = {
opengl = {
extraPackages32 = [
pkgs.driversi686Linux.amdvlk
];
extraPackages = [
pkgs.amdvlk
];
};
};
# hostname
networking.hostName = "cat"; # Define your hostname.
# Enable networking
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.utf8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_DE.utf8";
LC_IDENTIFICATION = "de_DE.utf8";
LC_MEASUREMENT = "de_DE.utf8";
LC_MONETARY = "de_DE.utf8";
LC_NAME = "de_DE.utf8";
LC_NUMERIC = "de_DE.utf8";
LC_PAPER = "de_DE.utf8";
LC_TELEPHONE = "de_DE.utf8";
LC_TIME = "de_DE.utf8";
};
# xserver options
services.xserver = {
displayManager = {
lightdm.enable = true;
defaultSession = "xfce+i3";
};
enable = true;
layout = "us";
xkbVariant = "alt-intl";
windowManager.i3 = {
package = pkgs.i3-gaps;
enable = true;
extraPackages = with pkgs; [
autotiling
brightnessctl
xorg.xev
dunst
python311
i3status-rust
];
};
desktopManager.default = "xfce";
desktopManager.xfce = {
enable = true;
noDesktop = true;
enableXfwm = false;
};
libinput = {
enable = true;
mouse = {
accelProfile = "flat";
accelSpeed = "1.0";
};
};
};
# Configure console keymap
console.keyMap = "us";
# Enable CUPS to print documents.
# services.printing.enable = true;
programs.seahorse.enable = true;
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
# enable bluetooth
hardware.bluetooth.enable = true;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# vim
environment.variables.EDITOR = "nvim";
programs.neovim.enable = true;
programs.neovim.viAlias = true;
# wireguard settings
networking.firewall = {
# if packets are still dropped, they will show up in dmesg
logReversePathDrops = true;
# wireguard trips rpfilter up
extraCommands = ''
ip46tables -t raw -I nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN
ip46tables -t raw -I nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN
'';
extraStopCommands = ''
ip46tables -t raw -D nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN || true
ip46tables -t raw -D nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN || true
'';
};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.05"; # Did you read the comment?
virtualisation.libvirtd.enable = true;
programs.dconf.enable = true;
}