summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorGrigory Shipunov2022-05-29 13:39:17 +0200
committerGrigory Shipunov2022-05-29 13:46:17 +0200
commit903ad983139229ea5abb69fd73c137ff46fee7df (patch)
treed7407f15862369eaa41802b9122812a28032b584 /hosts
parent9ab470a4193c29716e1fa84ce349af1a34ff8462 (diff)
small fixes
Diffstat (limited to 'hosts')
-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;