diff --git a/configs/gnome.nix b/backup/gnome.nix similarity index 100% rename from configs/gnome.nix rename to backup/gnome.nix diff --git a/configs/pantheon.nix b/backup/pantheon.nix similarity index 100% rename from configs/pantheon.nix rename to backup/pantheon.nix diff --git a/configs/games.nix b/configs/games.nix index b26d027..faf9595 100755 --- a/configs/games.nix +++ b/configs/games.nix @@ -1,7 +1,5 @@ { config, pkgs, lib, outputs, ... }: { - - services.flatpak.enable = true; programs = { gamescope = { enable = true; diff --git a/configs/user-gui.nix b/configs/user-gui.nix index 50694d9..9489f64 100755 --- a/configs/user-gui.nix +++ b/configs/user-gui.nix @@ -58,6 +58,8 @@ pinta rustdesk-flutter simple-scan + + telegram-desktop ]; home-manager.users.alex = { pkgs, ... }: { diff --git a/configs/user.nix b/configs/user.nix index 36d4e91..2a3da97 100755 --- a/configs/user.nix +++ b/configs/user.nix @@ -64,6 +64,7 @@ nix-output-monitor ]; + sessionPath = [ "$HOME/.npm-packages" "$HOME/.bin" ]; file = { ".npmrc" = { source = ../home/npmrc; }; diff --git a/machine/desktop/configuration.nix b/machine/desktop/configuration.nix index b92ea37..b4bf6d4 100755 --- a/machine/desktop/configuration.nix +++ b/machine/desktop/configuration.nix @@ -10,6 +10,19 @@ in outputs.overlays.additions outputs.overlays.modifications outputs.overlays.unstable-packages + (self: super: { + linuxPackages_latest = super.linuxPackages_latest.extend (lpself: lpsuper: { + xone = super.linuxPackages_latest.xone.overrideAttrs (oldAttrs: rec { + version = "0-unstable-latest"; + src = pkgs.fetchFromGitHub { + owner = "tskaar"; + repo = "xone"; + rev = "28df566c38e0ee500fd5f74643fc35f21a4ff696"; + hash = "sha256-++ScZiHnf8v7TjNBTQm7qGm3FALGp440avuQUuA86O4="; + }; + }); + }); + }) ]; config = { allowUnfree = true;