Compare commits

...

4 commits

Author SHA1 Message Date
6e1f4bc690 updated basic packages 2026-02-15 12:16:45 -05:00
482b280910 added boot command 2026-02-15 11:55:50 -05:00
b9eeeb99c2 updated shell paths 2026-02-15 11:54:06 -05:00
5e09d5e5a6 removed unused variables 2026-02-15 11:51:14 -05:00
6 changed files with 19 additions and 12 deletions

View file

@ -1,6 +1,4 @@
{
config,
lib,
pkgs,
...
}:
@ -11,12 +9,13 @@
];
environment.shellAliases = {
boot = "sudo nixos-rebuild boot --flake ~/NixOS/.#nvidia";
rebuild = "sudo nixos-rebuild switch --flake ~/NixOS/.#nvidia";
c = "nix-shell ~/nixos/shells/c.nix";
js = "nix-shell ~/nixos/shells/js.nix";
nix = "nix-shell ~/nixos/shells/nix.nix";
rust = "nix-shell ~/nixos/shells/rust.nix";
python = "nix-shell ~/nixos/shells/python.nix";
c = "nix-shell ~/NixOS/shells/c.nix";
js = "nix-shell ~/NixOS/shells/js.nix";
nix = "nix-shell ~/NixOS/shells/nix.nix";
rust = "nix-shell ~/NixOS/shells/rust.nix";
python = "nix-shell ~/NixOS/shells/python.nix";
};
programs.steam.enable = true;

View file

@ -14,7 +14,6 @@
outputs =
{
self,
disko,
home-manager,
nixpkgs,

View file

@ -10,6 +10,8 @@
fd
nil
nixd
nixfmt
package-version-server
unzip
ghostty
flatpak

View file

@ -1,7 +1,5 @@
{
config,
lib,
pkgs,
...
}:
{

View file

@ -1,6 +1,4 @@
{
config,
lib,
pkgs,
...
}:
@ -11,6 +9,7 @@
];
environment.shellAliases = {
boot = "sudo nixos-rebuild boot --flake ~/NixOS/.#nvidia";
rebuild = "sudo nixos-rebuild switch --flake ~/NixOS/.#black";
};

View file

@ -0,0 +1,10 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
pnpm
typescript-language-server
];
}