diff --git a/graphical.nix b/graphical.nix index b14f20c..2b94277 100644 --- a/graphical.nix +++ b/graphical.nix @@ -43,6 +43,7 @@ in MOZ_ENABLE_WAYLAND = "1"; XDG_CURRENT_DESKTOP = "sway"; BROWSER = "firefox"; + LIBSEAT_BACKEND = "logind"; }; programs = { diff --git a/home.nix b/home.nix index 6c0cbbf..01fcec8 100644 --- a/home.nix +++ b/home.nix @@ -1,7 +1,7 @@ { config, pkgs, lib, ... }: let - rustVersion = (pkgs.rustChannelOf { channel = "1.53.0"; }).rust; + rustVersion = (pkgs.rustChannelOf { channel = "stable"; }).rust; rsPlatform = pkgs.makeRustPlatform { cargo = rustVersion; rustc = rustVersion; @@ -57,6 +57,13 @@ in httpie sqlx-cli + (rsPlatform.buildRustPackage { + pname = "rq"; + version = "0.1.0"; + src = /home/traxys/Documents/rust/rq; + cargoSha256 = "1m70rk5aq14ysq8v95xzwm2lywsd22m4cbkgi617hm2hpg670dm3"; + }) + /* (rsPlatform.buildRustPackage rec { pname = "lists_cli"; version = "0.1.0"; @@ -84,6 +91,10 @@ in enable = true; }; + starship = { + enable = true; + }; + bat = { enable = true; }; diff --git a/nixos/localcfg.nix b/nixos/localcfg.nix index 5260b10..0f89824 100644 --- a/nixos/localcfg.nix +++ b/nixos/localcfg.nix @@ -78,14 +78,3 @@ in enable = true; }; } - - - - - - - - - - - diff --git a/nixos/pkg.nix b/nixos/pkg.nix index e9a4b00..93dec08 100644 --- a/nixos/pkg.nix +++ b/nixos/pkg.nix @@ -28,10 +28,18 @@ url = https://github.com/nix-community/neovim-nightly-overlay/archive/master.tar.gz; })) (import (builtins.fetchTarball { - url = https://github.com/andersk/nixpkgs-mozilla/archive/stdenv.lib.tar.gz; + url = https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz; })) ]; + /* nixpkgs.config.packageOverrides = pkgs: { + steam = pkgs.steam.override { + nativeOnly = true; + }; + }; */ + + programs.steam.enable = true; + # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ diff --git a/nvim/lua/completion.lua b/nvim/lua/completion.lua index 57eaf18..ce21c60 100644 --- a/nvim/lua/completion.lua +++ b/nvim/lua/completion.lua @@ -21,7 +21,7 @@ require'compe'.setup { nvim_lsp = true; nvim_lua = true; vsnip = true; - spell = true; + --spell = true; }; }