fix lua, maybe bend now

This commit is contained in:
Noa Aarts 2024-05-20 22:40:56 +02:00
parent 479c55b555
commit 1d9644dcbc
4 changed files with 34 additions and 33 deletions

View file

@ -52,8 +52,9 @@ vim.opt.list = true
vim.opt.listchars = { tab = "» ", trail = "·", nbsp = "" }
-- make tabs a reasonable width
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.tabstop = 2
vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2
-- Preview substitutions live, as you type!
vim.opt.inccommand = "split"
@ -157,7 +158,7 @@ require("lazy").setup({
"tpope/vim-fugitive",
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
"tpope/vim-sleuth", -- Detect tabstop and shiftwidth automatically
-- "tpope/vim-sleuth", -- Detect tabstop and shiftwidth automatically
-- NOTE: Plugins can also be added by using a table,
-- with the first argument being the link and the following

View file

@ -7,7 +7,6 @@
# TODO: find how I can make this build dependencies only
gnumake
cargo
rustc
python3
];

View file

@ -16,13 +16,13 @@
};
automapaper = {
url = "github:itepastra/automapaper";
inputs.nixpkgs.follows = "nixpkgs";
url = "github:itepastra/automapaper";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-minecraft = {
url = "github:Infinidoge/nix-minecraft";
inputs.nixpkgs.follows = "nixpkgs";
url = "github:Infinidoge/nix-minecraft";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland = {
@ -36,13 +36,13 @@
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
lazy = {
url = "github:bobvanderlinden/nixos-config";
inputs.nixpkgs.follows = "nixpkgs";
url = "github:bobvanderlinden/nixos-config";
inputs.nixpkgs.follows = "nixpkgs";
};
};
@ -51,28 +51,27 @@
{
nixosConfigurations = {
lambdaOS = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
inherit nix-colors;
inherit automapaper;
};
modules = [
./hosts/default/configuration.nix
inputs.home-manager.nixosModules.default
];
};
specialArgs = {
inherit inputs;
inherit nix-colors;
inherit automapaper;
};
modules = [
./hosts/default/configuration.nix
inputs.home-manager.nixosModules.default
];
};
NoasServer = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs;
inherit nix-colors;
};
modules = [
disko.nixosModules.disko
./hosts/server/configuration.nix
inputs.home-manager.nixosModules.default
];
};
specialArgs = {
inherit inputs;
inherit nix-colors;
};
modules = [
disko.nixosModules.disko
./hosts/server/configuration.nix
inputs.home-manager.nixosModules.default
];
};
};
};
}

View file

@ -66,6 +66,8 @@
nodejs
opam
stack
rustup
bend
localsend
];