(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:
@@ -5,7 +5,7 @@
|
||||
enable = true;
|
||||
enableZshIntegration = false;
|
||||
extraOptions = [ "-1" "-h" "--group-directories-first" ];
|
||||
icons = true;
|
||||
icons = "auto";
|
||||
git = true;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user