diff --git a/config/etc/i3/config b/config/etc/i3/config index ea3a108..7097796 100644 --- a/config/etc/i3/config +++ b/config/etc/i3/config @@ -12,9 +12,16 @@ new_window pixel hide_edge_borders both exec setxkbmap de +exec xinput --map-to-output "ipts 045E:001F Pen Pen (0)" eDP1 +exec xinput --map-to-output "ipts 045E:001F Pen Eraser (0)" eDP1 +exec xinput --map-to-output "ipts 045E:001F Touchscreen" eDP1 + +bindsym $mod+Shift+s exec xinput --map-to-output "ipts 045E:001F Pen Pen (0)" eDP1; exec xinput --map-to-output "ipts 045E:001F Pen Eraser (0)" eDP1; exec xinput --map-to-output "ipts 045E:001F Touchscreen" eDP1 +bindsym $mod+Shift+a exec xinput --enable "ipts 045E:001F Touchscreen" +bindsym $mod+Shift+d exec xinput --disable "ipts 045E:001F Touchscreen" #exec compton -f -exec feh --bg-scale $(xdg-user-dir PICTURES)/wallpaper.jpg +exec feh --bg-scale Pictures/wallpaper.jpg #exec pulseaudio -D #exec fcitx #exec env=LC_CTYPE=zh_CN.UTF-8 emacs --daemon diff --git a/config/etc/i3/py3status b/config/etc/i3/py3status index f8ee423..26bd898 100644 --- a/config/etc/i3/py3status +++ b/config/etc/i3/py3status @@ -18,7 +18,6 @@ order += "backlight" order += "volume_status" order += "cpu_temperature 0" order += "load" -order += "battery 0" order += "group tz" group network { @@ -66,17 +65,6 @@ group tz { } } -battery 0 { - format = "%status %percentage %remaining %emptytime" - format_down = "No battery" - status_chr = "⚡ CHR" - status_bat = "🔋 BAT" - status_unk = "? UNK" - status_full = "☻ FULL" - path = "/sys/class/power_supply/BAT%d/uevent" - low_threshold = 10 -} - volume_status { button_up = 4 button_down = 5 diff --git a/config/networking.nix b/config/networking.nix index bb009b7..bcdb93a 100644 --- a/config/networking.nix +++ b/config/networking.nix @@ -1,42 +1,7 @@ -{ config, lib, ... }: - -with lib; +{ config, ... }: { networking = { hostName = config.machine.hostName; - useNetworkd = config.machine.useNetworkd; - useDHCP = !config.machine.useNetworkd; - dhcpcd.enable = !config.machine.useNetworkd; }; - # Based on - # https://github.com/NixOS/nixpkgs/issues/10001#issuecomment-905532069 - systemd.network = mkIf config.machine.useNetworkd { - enable = true; - networks = let - networkConfig = { - DHCP = "yes"; - DNSSEC = "yes"; - DNSOverTLS = "yes"; - DNS = [ "1.1.1.1" "1.0.0.1" ]; - }; - in { - "40-wired" = { - enable = true; - name = "en*"; - dhcpV4Config.RouteMetric = 2048; - inherit networkConfig; - }; - "40-wireless" = { - enable = true; - name = "wl*"; - dhcpV4Config.RouteMetric = 1024; - inherit networkConfig; - }; - }; - }; - # Wait for any interface to become available, not for all - systemd.services."systemd-networkd-wait-online".serviceConfig.ExecStart = [ - "" "${config.systemd.package}/lib/systemd/systemd-networkd-wait-online --any" - ]; } diff --git a/config/nix.nix b/config/nix.nix index 15c0590..058747e 100644 --- a/config/nix.nix +++ b/config/nix.nix @@ -1,4 +1,4 @@ -{ pkgs, config, lib, ... }: +{ config, lib, ... }: let cfg = config.machine; @@ -8,11 +8,8 @@ in { buildCores = 1; autoOptimiseStore = true; useSandbox = true; - package = pkgs.nix_2_4; - allowedUsers = [ "root" ] ++ (map (n: n.name) cfg.administrators); extraOptions = '' build-timeout = 86400 # 24 hours - experimental-features = nix-command flakes ''; binaryCachePublicKeys = [ (lib.fileContents "${cfg.secretPath}/hydra_cache.pub") ]; trustedBinaryCaches = [ diff --git a/options/machine.nix b/options/machine.nix index 4cce148..5f8087f 100644 --- a/options/machine.nix +++ b/options/machine.nix @@ -59,13 +59,6 @@ in { The Machines HostName ''; }; - useNetworkd = mkOption { - type = types.bool; - default = false; - description = '' - Disables dhcpcd and enables networkd. - ''; - }; binaryCaches = mkOption { type = types.listOf types.str; default = []; diff --git a/pkgsets/base.nix b/pkgsets/base.nix index f12fb1e..5462e7f 100644 --- a/pkgsets/base.nix +++ b/pkgsets/base.nix @@ -32,6 +32,7 @@ nix-update-source nix-zsh-completions nixbang + nixops nmap nox ntfs3g diff --git a/services/desktop/i3.nix b/services/desktop/i3.nix index a4856e8..02916ca 100644 --- a/services/desktop/i3.nix +++ b/services/desktop/i3.nix @@ -7,11 +7,10 @@ { enable = true; configFile = ../../config/etc/i3/config; - extraPackages = with pkgs; [ + extraPackages = with pkgs; [ dmenu file i3lock i3status - xdg-user-dirs ]; } diff --git a/services/nspawn.nix b/services/nspawn.nix deleted file mode 100644 index e0ebb4b..0000000 --- a/services/nspawn.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ config, lib, ... }: - -with lib; - -mkIf (elem "nspawn" config.machine.services) { - systemd = let - fn = import ../fn.nix { inherit lib; }; - in { - nspawn = recursiveUpdate (listToAttrs ( - (map ( - name: { - name = name; - value = { networkConfig.VirtualEthernet = "no"; }; - } - ) - (fn.lst { p = /var/lib/machines; t = "directory"; b = false; }) - ))) { - "64Arch" = { - filesConfig = { - "BindReadOnly" = ["/tmp/.X11-unix"]; - "Bind" = ["/dev/snd" "/dev/dri"]; - # TODO: Add this to service overrides - # "DeviceAllow" = [ "/dev/dri/renderD128" ]; - }; - }; - }; - }; -}