This commit is contained in:
Quentin Boyer 2021-08-27 13:38:52 +02:00
parent afb4a57b25
commit 7aa0c7b3e0
5 changed files with 23 additions and 14 deletions

View file

@ -43,6 +43,7 @@ in
MOZ_ENABLE_WAYLAND = "1";
XDG_CURRENT_DESKTOP = "sway";
BROWSER = "firefox";
LIBSEAT_BACKEND = "logind";
};
programs = {

View file

@ -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;
};

View file

@ -78,14 +78,3 @@ in
enable = true;
};
}

View file

@ -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; [

View file

@ -21,7 +21,7 @@ require'compe'.setup {
nvim_lsp = true;
nvim_lua = true;
vsnip = true;
spell = true;
--spell = true;
};
}