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
7 changed files with 26 additions and 15 deletions

View file

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

View file

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

View file

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

View file

@ -11,7 +11,7 @@
]; ];
environment.shellAliases = { environment.shellAliases = {
rebuild = "sudo nixos-rebuild switch --flake ~/NixOS/.#laptop"; rebuild = "sudo nixos-rebuild switch --flake ~/nixos/.#laptop";
c = "nix-shell ~/nixos/shells/c.nix"; c = "nix-shell ~/nixos/shells/c.nix";
js = "nix-shell ~/nixos/shells/js.nix"; js = "nix-shell ~/nixos/shells/js.nix";
nix = "nix-shell ~/nixos/shells/nix.nix"; nix = "nix-shell ~/nixos/shells/nix.nix";
@ -41,8 +41,12 @@
"flakes" "flakes"
]; ];
services.displayManager.cosmic-greeter.enable = true; # Gnome Desktop.
services.desktopManager.cosmic.enable = true; services.desktopManager.gnome.enable = true;
services.displayManager.gdm.enable = true;
services.gnome.gnome-software.enable = true;
services.gnome.core-apps.enable = true;
services.gnome.games.enable = false;
services.flatpak.enable = true; services.flatpak.enable = true;
hardware.graphics.enable = true; hardware.graphics.enable = true;

View file

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

View file

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