flake update
This commit is contained in:
parent
6c0bcfe738
commit
4b92960a41
4 changed files with 25 additions and 11 deletions
|
@ -74,6 +74,7 @@ in
|
|||
};
|
||||
|
||||
# Bootloader.
|
||||
# boot.initrd.systemd.enable = true; # Experimental
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.systemd-boot.configurationLimit = 6;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
|
|
@ -42,7 +42,6 @@
|
|||
ripgrep
|
||||
rnix-lsp
|
||||
rsync
|
||||
rust-analyzer
|
||||
rustup
|
||||
saleae-logic-2
|
||||
solo2-cli
|
||||
|
@ -120,10 +119,23 @@
|
|||
enable = true;
|
||||
package = pkgs.firefox-devedition-bin;
|
||||
};
|
||||
|
||||
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscode;
|
||||
userSettings = {
|
||||
"ltex.language" = "en-GB";
|
||||
"workbench.colorTheme" = "Catppuccin Frappé";
|
||||
"editor.fontFamily" = "'DejaVuSansMono Nerd Font', 'monospace', monospace";
|
||||
"keyboard.dispatch" = "keyCode";
|
||||
"rust-analyzer.server.path" = "${pkgs.rust-analyzer}/bin/rust-analyzer";
|
||||
"terminal.integrated.defaultProfile.linux" = "zsh";
|
||||
"nix.enableLanguageServer" = true; # Enable LSP.
|
||||
"nix.serverPath" = "${pkgs.nil}/bin/nil"; # The path to the LSP server executable.
|
||||
"[nix]" = {
|
||||
"editor.defaultFormatter" = "jnoortheen.nix-ide";
|
||||
};
|
||||
};
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
catppuccin.catppuccin-vsc
|
||||
codezombiech.gitignore
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
};
|
||||
networking = {
|
||||
useDHCP = true;
|
||||
dhcpcd.wait = "background";
|
||||
wireless = {
|
||||
enable = true;
|
||||
environmentFile = "/var/lib/secrets/wireless.env";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue