adds packages per hostname
adds unstable nixpkgs for vscode, docker, go and ollama updates tilingshell layouts
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ config, pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
let
|
||||
files = builtins.removeAttrs (builtins.readDir ./.) [ "default.nix" ];
|
||||
|
@@ -1,9 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
{ pkgs-unstable, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
# GUI Applications
|
||||
## Utilities
|
||||
mission-center
|
||||
pkgs-unstable.mission-center
|
||||
gnome.gnome-tweaks
|
||||
pinta
|
||||
bottles
|
||||
|
@@ -1,13 +1,8 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
pkgs-vscode,
|
||||
...
|
||||
}:
|
||||
{ pkgs, pkgs-unstable, ... }:
|
||||
{
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs-vscode.vscode;
|
||||
package = pkgs-unstable.vscode;
|
||||
mutableExtensionsDir = true;
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
ms-azuretools.vscode-docker
|
||||
|
@@ -1,9 +1,12 @@
|
||||
{ pkgs-unstable, ... }:
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
pkgs-zed,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = [ pkgs-zed.zed-editor ];
|
||||
home.packages = with pkgs-unstable; [
|
||||
zed-editor
|
||||
nixd
|
||||
nixdoc
|
||||
|
||||
# We need nodejs due to a stupid bug with CoPilot not loading properly
|
||||
# https://github.com/zed-industries/zed/issues/12187#issuecomment-2322338504
|
||||
nodejs_22
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user