all repos — char/flake @ 61c831c7c1cabd9384bea2894dd6e7228b1dc66e

nixos flake

install flake on opal :)
videogame hacker half-kh-hacker@hackery.site
Mon, 27 Jan 2025 11:29:00 +0000
commit

61c831c7c1cabd9384bea2894dd6e7228b1dc66e

parent

2263f1e98f19cf12caa8bcc5861869806dce08f4

2 files changed, 11 insertions(+), 6 deletions(-)

jump to
M flake.nixflake.nix

@@ -48,12 +48,12 @@ ];

}) */ + lix.nixosModules.default + niri.nixosModules.niri ({ ... }: { nixpkgs.overlays = [ niri.overlays.niri ]; }) - - lix.nixosModules.default ( { ... }:

@@ -84,10 +84,15 @@

modules = [ lix.nixosModules.default + niri.nixosModules.niri + ({ ... }: { + nixpkgs.overlays = [ niri.overlays.niri ]; + }) + ( { ... }: { - system.stateVersion = "24.05"; + system.stateVersion = "23.05"; } )

@@ -98,7 +103,7 @@ ./profiles/common/desktop.nix

./profiles/opal/hardware-configuration.nix ./profiles/opal/base.nix - ./profiles/runestone/desktop.nix # TODO: replace with a nice wayland twm or something + ./profiles/runestone/desktop.nix ]; }; };
M profiles/opal/base.nixprofiles/opal/base.nix

@@ -9,14 +9,14 @@ "i8042.direct"

"i8042.dumbkbd" ]; # funny keyboard issue - hardware.opengl = { + hardware.graphics = { enable = true; extraPackages = with pkgs; [ intel-media-driver intel-vaapi-driver libvdpau-va-gl libva - onevpl-intel-gpu + vpl-gpu-rt ]; };