diff --git a/flake.nix b/flake.nix index fe9e3b0..f5de1fc 100644 --- a/flake.nix +++ b/flake.nix @@ -31,9 +31,6 @@ impermanence.url = "github:nix-community/impermanence"; - # Helix my beloved - helix.url = "github:helix-editor/helix"; - spicetify-nix = { url = "github:gerg-l/spicetify-nix"; inputs.nixpkgs.follows = "nixpkgs"; diff --git a/hosts/hermit/hardware/monitors.nix b/hosts/hermit/hardware/monitors.nix index b65241a..2ded0a6 100644 --- a/hosts/hermit/hardware/monitors.nix +++ b/hosts/hermit/hardware/monitors.nix @@ -1,6 +1,18 @@ _: { modules.system.hardware.monitors = { eDP-1 = { + resolution = { + x = 1920; + y = 1080; + }; + scale = 1; + refreshRate = 60; + position = { + x = 1920; + y = 0; + }; + }; + DP-3 = { resolution = { x = 1920; y = 1080; diff --git a/modules/programs/gui/foot.nix b/modules/programs/gui/foot.nix index 27565f7..0ee278d 100644 --- a/modules/programs/gui/foot.nix +++ b/modules/programs/gui/foot.nix @@ -18,6 +18,8 @@ # font = "Iosevka Custom:size=14"; # font-bold = "Iosevka Custom:size=14"; + font = "Iosevka Nerd Font:size=14"; + font-bold = "Iosevka Nerd Font:size=14"; line-height = 20; letter-spacing = 0; diff --git a/modules/services/pipewire.nix b/modules/services/pipewire.nix index b2090c5..e9c7f16 100644 --- a/modules/services/pipewire.nix +++ b/modules/services/pipewire.nix @@ -7,7 +7,7 @@ with lib; let cfg = config.modules.system.sound; in { config = mkIf cfg.enable { - hardware.pulseaudio.enable = false; + services.pulseaudio.enable = false; services.pipewire = { enable = true; alsa.enable = true; # TODO Do I need this? diff --git a/modules/user/default.nix b/modules/user/default.nix index bf237a3..7aa8b2e 100644 --- a/modules/user/default.nix +++ b/modules/user/default.nix @@ -5,7 +5,7 @@ }: rec { packages = { fish = pkgs.callPackage ./shell {}; - helix = pkgs.callPackage ./helix {inherit (inputs.helix.packages.${pkgs.stdenv.system}) helix;}; + helix = pkgs.callPackage ./helix {}; kakoune = pkgs.callPackage ./kakoune {}; }; shell = pkgs.mkShell {