(desktop) Gen 488: Edited hostnames, moved steam back to home-manager config, added markdown to nixvim lsp, altered firefox bookmarks

This commit is contained in:
pagedMov
2024-10-15 17:42:14 -04:00
parent b20b6f7263
commit 6da93561ea
6 changed files with 44 additions and 28 deletions

View File

@@ -5,7 +5,7 @@
enable = true;
enableZshIntegration = false;
extraOptions = [ "-1" "-h" "--group-directories-first" ];
icons = true;
icons = "auto";
git = true;
};
}

View File

@@ -26,14 +26,31 @@
profiles.${username} = {
name = "${username}";
bookmarks = [
{ name = "NixOS Options";
url = "https://search.nixos.org/options";
}
{ name = "Home Manager Options";
url = "https://home-manager-options.extranix.com/";
}
{ name = "Nixvim Docs";
url = "https://nix-community.github.io/nixvim/";
{ name = "Nix sites";
toolbar = true;
bookmarks = [
{ name = "NixOS Options";
url = "https://search.nixos.org/options";
}
{ name = "Home Manager Options";
url = "https://home-manager-options.extranix.com/";
}
{ name = "Nixvim Docs";
url = "https://nix-community.github.io/nixvim/";
}
{ name = "Noogle";
url = "https://noogle.dev/";
}
{ name = "NixOS Wiki";
url = "https://nixos.wiki/";
}
{ name = "NixOS Manual";
url = "https://nixos.org/manual/nixos/stable";
}
{ name = "Nixpkgs Reference";
url = "https://nixos.org/manual/nixpkgs/stable";
}
];
}
{ name = "Rust Manual";
url = "https://doc.rust-lang.org/book/ch01-03-hello-cargo.html";

View File

@@ -1,11 +1,14 @@
{ pkgs, ... }:
{ host, ... }:
{
networking = {
networkmanager.enable = true;
hostName = "glasshaus";
hostName = if (host == "desktop") then
"argon" else "mercury";
hosts = {
"192.168.1.163" = [ "glasshaus.info" ];
"192.168.1.163" = [ "glasshaus" ];
"192.168.1.111" = [ "argon" ];
"192.168.1.223" = [ "mercury" ];
};
firewall = {
enable = true;