(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

20
flake.lock generated
View File

@@ -346,11 +346,11 @@
]
},
"locked": {
"lastModified": 1728903686,
"narHash": "sha256-ZHFrGNWDDriZ4m8CA/5kDa250SG1LiiLPApv1p/JF0o=",
"lastModified": 1729027341,
"narHash": "sha256-IqWD7bA9iJVifvJlB4vs2KUXVhN+d9lECWdNB4jJ0tE=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "e1aec543f5caf643ca0d94b6a633101942fd065f",
"rev": "2a4fd1cfd8ed5648583dadef86966a8231024221",
"type": "github"
},
"original": {
@@ -748,11 +748,11 @@
},
"nixpkgs_4": {
"locked": {
"lastModified": 1728492678,
"narHash": "sha256-9UTxR8eukdg+XZeHgxW5hQA9fIKHsKCdOIUycTryeVw=",
"lastModified": 1728888510,
"narHash": "sha256-nsNdSldaAyu6PE3YUA+YQLqUDJh+gRbBooMMekZJwvI=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "5633bcff0c6162b9e4b5f1264264611e950c8ec7",
"rev": "a3c0b3b21515f74fd2665903d4ce6bc4dc81c77c",
"type": "github"
},
"original": {
@@ -825,11 +825,11 @@
},
"nur": {
"locked": {
"lastModified": 1728998640,
"narHash": "sha256-mbtviOFtza3J6e2wlkqICSj0PcqEsPpAlPuVnvLBAfM=",
"lastModified": 1729024314,
"narHash": "sha256-iV0bSTjoa3GDNQO85IVc5V5n1Dg9C1vDLhEWioO8924=",
"owner": "nix-community",
"repo": "NUR",
"rev": "9c76575706ddbe8b71b8dee7c399d7dba2141635",
"rev": "da1c520a9acd9a9d1402db1939c9b9a2fa49b4b8",
"type": "github"
},
"original": {
@@ -870,7 +870,7 @@
},
"locked": {
"lastModified": 1,
"narHash": "sha256-bjrRxs4ja1ulvgjlWN5IwfGdAVOwYQR6YSPCRVje52E=",
"narHash": "sha256-wk+pdZUCu13qvhHBrycwrvGnRUaf6dbLchr3yF96C1c=",
"path": "./pkgs/nixvim",
"type": "path"
},

View File

@@ -1,13 +1,8 @@
{ pkgs, ... }:
{ ... }:
{
programs.steam = {
enable = true;
extest.enable = true;
remotePlay.openFirewall = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
];
};
}

View File

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

View File

@@ -25,6 +25,9 @@
};
profiles.${username} = {
name = "${username}";
bookmarks = [
{ name = "Nix sites";
toolbar = true;
bookmarks = [
{ name = "NixOS Options";
url = "https://search.nixos.org/options";
@@ -35,6 +38,20 @@
{ 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;

View File

@@ -9,6 +9,7 @@
html.enable = true;
jsonls.enable = true;
lua-ls.enable = true;
marksman.enable = true;
nil-ls.enable = true;
pyright.enable = true;
sqls.enable = true;