flake update

This commit is contained in:
Vivian 2022-09-28 12:20:54 +02:00
parent 9dbaf2c3c4
commit 2f100687a7
4 changed files with 25 additions and 11 deletions

View file

@ -420,11 +420,11 @@
"utils": "utils_3" "utils": "utils_3"
}, },
"locked": { "locked": {
"lastModified": 1664273942, "lastModified": 1664286632,
"narHash": "sha256-PFQR1UJQs7a7eaH5YoCZky5dmxR5cjaKRK+MpPbR7YE=", "narHash": "sha256-fKENvLanhmBENlIbmDAVB8SKSbwdLLBYKu6B7oJ0rLc=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "1f5ef2bb419a327fae28a83b50fab50959132c24", "rev": "6dc8a43f397c92afbc3f771385ac803d96d5eeb5",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -550,11 +550,11 @@
"utils": "utils_5" "utils": "utils_5"
}, },
"locked": { "locked": {
"lastModified": 1664243684, "lastModified": 1664330076,
"narHash": "sha256-n1rNou0jFpAyuObl2w+kRK11xDXWFwZgNztOvGLOh2Q=", "narHash": "sha256-pBEkfVmPVwBAluYEn5BbCb40PkKlqAb/DBF4fdPLitw=",
"owner": "jyooru", "owner": "jyooru",
"repo": "nix-minecraft-servers", "repo": "nix-minecraft-servers",
"rev": "489b7f7e7b4281a41f5f4407960e93d2d80fffc5", "rev": "89e7d9e1f5aadad0634b62d55d826d8278dd2bb8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -698,11 +698,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1664292984, "lastModified": 1664359465,
"narHash": "sha256-1XO4acnMXSXyq2R8tzWTH74bZPWtKjAu+hAHOPxaU8k=", "narHash": "sha256-Bx1bjo3d77UqoheOeLbbBOyPvuNLedEkgTx3nDO2QJE=",
"owner": "NULLx76", "owner": "NULLx76",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e50c95c983718b250df260fe8e855b6e05d0fba2", "rev": "43377d2818041a0e40ac769b3d8897c2c74ba816",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -74,6 +74,7 @@ in
}; };
# Bootloader. # Bootloader.
# boot.initrd.systemd.enable = true; # Experimental
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.configurationLimit = 6; boot.loader.systemd-boot.configurationLimit = 6;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;

View file

@ -42,7 +42,6 @@
ripgrep ripgrep
rnix-lsp rnix-lsp
rsync rsync
rust-analyzer
rustup rustup
saleae-logic-2 saleae-logic-2
solo2-cli solo2-cli
@ -120,10 +119,23 @@
enable = true; enable = true;
package = pkgs.firefox-devedition-bin; package = pkgs.firefox-devedition-bin;
}; };
programs.vscode = { programs.vscode = {
enable = true; enable = true;
package = pkgs.vscode; 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; [ extensions = with pkgs.vscode-extensions; [
catppuccin.catppuccin-vsc catppuccin.catppuccin-vsc
codezombiech.gitignore codezombiech.gitignore

View file

@ -7,6 +7,7 @@
}; };
networking = { networking = {
useDHCP = true; useDHCP = true;
dhcpcd.wait = "background";
wireless = { wireless = {
enable = true; enable = true;
environmentFile = "/var/lib/secrets/wireless.env"; environmentFile = "/var/lib/secrets/wireless.env";