mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-15 03:40:20 +01:00
update
This commit is contained in:
parent
afb4a57b25
commit
7aa0c7b3e0
5 changed files with 23 additions and 14 deletions
|
|
@ -43,6 +43,7 @@ in
|
|||
MOZ_ENABLE_WAYLAND = "1";
|
||||
XDG_CURRENT_DESKTOP = "sway";
|
||||
BROWSER = "firefox";
|
||||
LIBSEAT_BACKEND = "logind";
|
||||
};
|
||||
|
||||
programs = {
|
||||
|
|
|
|||
13
home.nix
13
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;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -78,14 +78,3 @@ in
|
|||
enable = true;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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; [
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ require'compe'.setup {
|
|||
nvim_lsp = true;
|
||||
nvim_lua = true;
|
||||
vsnip = true;
|
||||
spell = true;
|
||||
--spell = true;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue