summaryrefslogtreecommitdiff
path: root/hosts/microwave/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/microwave/configuration.nix')
-rw-r--r--hosts/microwave/configuration.nix28
1 files changed, 1 insertions, 27 deletions
diff --git a/hosts/microwave/configuration.nix b/hosts/microwave/configuration.nix
index 7020447..9359ac7 100644
--- a/hosts/microwave/configuration.nix
+++ b/hosts/microwave/configuration.nix
@@ -5,11 +5,6 @@
{ config, pkgs, ... }:
{
- imports =
- [ # Include the results of the hardware scan.
- ./hardware-configuration.nix
- ];
-
# SWAP
zramSwap = {
enable = true;
@@ -24,9 +19,8 @@
gimp
inkscape
];
- networking.firewall.enable = true;
- services.xserver.videoDrivers = [ "displaylink" "modesetting" ];
+ networking.firewall.enable = true;
networking = {
hostName = "microwave"; # Define your hostname.
networkmanager.enable = true;
@@ -55,26 +49,6 @@
hardware.cpu.intel.updateMicrocode = true;
hardware.enableAllFirmware = true;
-
- # Copy the NixOS configuration file and link it from the resulting system
- # (/run/current-system/configuration.nix). This is useful in case you
- # accidentally delete configuration.nix.
- # system.copySystemConfiguration = true;
-
-
- # Enable touchpad support.
- services.xserver.libinput = {
- enable = true;
- touchpad = {
- disableWhileTyping = true;
- naturalScrolling = true;
- scrollMethod = "twofinger";
- tapping = true;
- accelProfile = "adaptive";
- # clickMethod = "clickfinger";
- };
- };
-
# Shell config (bash)
programs.bash = {
enableCompletion = true;