working system once again
This commit is contained in:
parent
0117d6155b
commit
4f3d125329
5 changed files with 16 additions and 5 deletions
|
@ -31,9 +31,6 @@
|
||||||
|
|
||||||
impermanence.url = "github:nix-community/impermanence";
|
impermanence.url = "github:nix-community/impermanence";
|
||||||
|
|
||||||
# Helix my beloved
|
|
||||||
helix.url = "github:helix-editor/helix";
|
|
||||||
|
|
||||||
spicetify-nix = {
|
spicetify-nix = {
|
||||||
url = "github:gerg-l/spicetify-nix";
|
url = "github:gerg-l/spicetify-nix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
|
@ -1,6 +1,18 @@
|
||||||
_: {
|
_: {
|
||||||
modules.system.hardware.monitors = {
|
modules.system.hardware.monitors = {
|
||||||
eDP-1 = {
|
eDP-1 = {
|
||||||
|
resolution = {
|
||||||
|
x = 1920;
|
||||||
|
y = 1080;
|
||||||
|
};
|
||||||
|
scale = 1;
|
||||||
|
refreshRate = 60;
|
||||||
|
position = {
|
||||||
|
x = 1920;
|
||||||
|
y = 0;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
DP-3 = {
|
||||||
resolution = {
|
resolution = {
|
||||||
x = 1920;
|
x = 1920;
|
||||||
y = 1080;
|
y = 1080;
|
||||||
|
|
|
@ -18,6 +18,8 @@
|
||||||
|
|
||||||
# font = "Iosevka Custom:size=14";
|
# font = "Iosevka Custom:size=14";
|
||||||
# font-bold = "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;
|
line-height = 20;
|
||||||
letter-spacing = 0;
|
letter-spacing = 0;
|
||||||
|
|
|
@ -7,7 +7,7 @@ with lib; let
|
||||||
cfg = config.modules.system.sound;
|
cfg = config.modules.system.sound;
|
||||||
in {
|
in {
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
hardware.pulseaudio.enable = false;
|
services.pulseaudio.enable = false;
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
alsa.enable = true; # TODO Do I need this?
|
alsa.enable = true; # TODO Do I need this?
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
}: rec {
|
}: rec {
|
||||||
packages = {
|
packages = {
|
||||||
fish = pkgs.callPackage ./shell {};
|
fish = pkgs.callPackage ./shell {};
|
||||||
helix = pkgs.callPackage ./helix {inherit (inputs.helix.packages.${pkgs.stdenv.system}) helix;};
|
helix = pkgs.callPackage ./helix {};
|
||||||
kakoune = pkgs.callPackage ./kakoune {};
|
kakoune = pkgs.callPackage ./kakoune {};
|
||||||
};
|
};
|
||||||
shell = pkgs.mkShell {
|
shell = pkgs.mkShell {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue