bro stop asking idk

This commit is contained in:
2021-11-03 20:29:49 +00:00
parent c95434a3e4
commit 8b587f7f75
4 changed files with 17 additions and 17 deletions

12
flake.lock generated
View File

@@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1635123562, "lastModified": 1635839387,
"narHash": "sha256-kYuwQqHXDYxy5ijpm8SvCoPNx0br1TpoWeTIOEwOYvA=", "narHash": "sha256-2B6DqfTiwY5w2TljC4+AxEUuVYMTP5Fo2h5iGNIONvk=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "da8a78eec9f7adb57f9e961d1da64805efacff37", "rev": "288faaa5a65e72e37e6027024829b15c8bb69286",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -23,11 +23,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1634782485, "lastModified": 1635844945,
"narHash": "sha256-psfh4OQSokGXG0lpq3zKFbhOo3QfoeudRcaUnwMRkQo=", "narHash": "sha256-tZcL307dj28jgEU1Wdn+zwG9neyW0H2+ZjdVhvJxh9g=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "34ad3ffe08adfca17fcb4e4a47bb5f3b113687be", "rev": "b67e752c29f18a0ca5534a07661366d6a2c2e649",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -19,7 +19,7 @@
# nix flakes compatibility # nix flakes compatibility
nix = { nix = {
package = pkgs.nixUnstable; package = pkgs.nix_2_4;
extraOptions = '' extraOptions = ''
experimental-features = nix-command flakes experimental-features = nix-command flakes
''; '';

View File

@@ -24,11 +24,14 @@
in in
with pkgs; with pkgs;
[ [
cargo
chezmoi chezmoi
discord
element-desktop element-desktop
feh feh
fzf fzf
go_1_17 go_1_17
gopls
jetbrains.goland jetbrains.goland
i3 i3
i3lock i3lock
@@ -70,6 +73,11 @@
programs.starship.enable = true; programs.starship.enable = true;
programs.vscode = {
enable = true;
};
home.stateVersion = "21.05"; home.stateVersion = "21.05";
} }

View File

@@ -6,17 +6,9 @@
viAlias = true; viAlias = true;
vimAlias = true; vimAlias = true;
plugins = with pkgs.vimPlugins; [ plugins = with pkgs.vimPlugins; [
fzf-vim fugitive
gruvbox-nvim
nerdtree
nvim-lspconfig nvim-treesitter
(nvim-treesitter.withPlugins (plugins: pkgs.tree-sitter.allGrammars))
nvim-whichkey-setup-lua
vim-nix
]; ];
}; };
} }