diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-12-31 12:22:48 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-12-31 12:22:48 +0100 |
commit | 53c73e7e3cb0bf36baac5eca5c5deb6481341ac7 (patch) | |
tree | 6d976640bd2817f58518d83d6c37f3f58cd42c40 /machines/x220 | |
parent | 7e943844b21a5412266a8e6c17dbccd79ca1cbe4 (diff) | |
download | dots-53c73e7e3cb0bf36baac5eca5c5deb6481341ac7.tar.gz dots-53c73e7e3cb0bf36baac5eca5c5deb6481341ac7.zip |
Cleanup
Diffstat (limited to 'machines/x220')
-rw-r--r-- | machines/x220/configuration.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/machines/x220/configuration.nix b/machines/x220/configuration.nix index 12c1bba..9fa9f99 100644 --- a/machines/x220/configuration.nix +++ b/machines/x220/configuration.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ pkgs, lib, ... }: let busybox_utils = pkgs.stdenv.mkDerivation { @@ -12,6 +12,7 @@ let }; in { + imports = [ ../base.nix ../pl.nix @@ -23,6 +24,7 @@ in ]; boot.plymouth.enable = true; + boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; networking = { hostName = "x220"; @@ -37,15 +39,15 @@ in environment.systemPackages = with pkgs; [ + discord # Basic tools groff file ssh-ident busybox_utils # XORG perfs - dunst xclip - xwallpaper xdotool + dunst # UI apps - zathura brave sxiv pulsemixer + zathura sxiv pulsemixer lynx lf arandr wpa_supplicant_gui system-config-printer libreoffice vscodium abook @@ -54,7 +56,6 @@ in mpd mpc_cli mpv ffmpeg youtube-dl # CLIs - lm_sensors gitAndTools.gh docker-compose xsel bc libnotify pamixer maim killall @@ -83,7 +84,7 @@ in programs.dockd.enable = true; virtualisation.docker.enable = true; - systemd.services.docker.enable = false; + # systemd.services.docker.enable = false; services.udev.packages = [ pkgs.libu2f-host ]; |