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

View File

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

View File

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

View File

@@ -26,14 +26,31 @@
profiles.${username} = { profiles.${username} = {
name = "${username}"; name = "${username}";
bookmarks = [ bookmarks = [
{ name = "NixOS Options"; { name = "Nix sites";
url = "https://search.nixos.org/options"; toolbar = true;
} bookmarks = [
{ name = "Home Manager Options"; { name = "NixOS Options";
url = "https://home-manager-options.extranix.com/"; url = "https://search.nixos.org/options";
} }
{ name = "Nixvim Docs"; { name = "Home Manager Options";
url = "https://nix-community.github.io/nixvim/"; 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"; { name = "Rust Manual";
url = "https://doc.rust-lang.org/book/ch01-03-hello-cargo.html"; url = "https://doc.rust-lang.org/book/ch01-03-hello-cargo.html";

View File

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

View File

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