Removed darwin config; Added unstable systems to config

This commit is contained in:
Random936
2025-11-16 11:58:30 -05:00
parent ad8b141bfc
commit e0d337d56e
9 changed files with 69 additions and 75 deletions

View File

@@ -1,30 +0,0 @@
{ pkgs, ... }: {
home = {
username = "jadenmaxwell";
homeDirectory = "/Users/jadenmaxwell";
};
home.packages = with pkgs; [
gnupg
vesktop
];
imports = [
./shared.nix
./modules/utils.nix
./modules/development.nix
./modules/sketchybar.nix
./modules/aerospace.nix
./modules/emacs.nix
./modules/zsh.nix
];
programs.ssh.extraConfig = ''
Host 192.168.100.*
SetEnv TERM=xterm-256color
'';
home.file = {
".config/ghostty/config".source = ../dotfiles/.config/ghostty/config;
};
}

View File

@@ -8,7 +8,6 @@
imports = [
./shared.nix
./modules/utils.nix
./modules/linux-only-utils.nix
./modules/networking.nix
./modules/neovim.nix
./modules/emacs.nix

View File

@@ -1,4 +1,4 @@
{ pkgs, user, ... }: {
{ user, ... }: {
home = {
username = "${user}";
@@ -8,7 +8,6 @@
imports = [
./shared.nix
./modules/utils.nix
./modules/linux-only-utils.nix
./modules/networking.nix
./modules/neovim.nix
./modules/tmux.nix

View File

@@ -1,7 +0,0 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
ncdu
cava
nvtopPackages.full
];
}

View File

@@ -10,6 +10,8 @@
jq
bc
duf
cava
ncdu
file
dysk
wget
@@ -28,6 +30,7 @@
xclicker
pciutils
fastfetch
nvtopPackages.full
# Encryption Tools
#age

View File

@@ -1,4 +1,4 @@
{ lib, config, pkgs, ... }: {
{ ... }: {
nixpkgs.config.allowUnfree = true;
fonts.fontconfig.enable = true;
@@ -7,8 +7,10 @@
home-manager.enable = true;
git = {
enable = true;
userName = "Random936";
userEmail = "randomdude936@gmail.com";
settings.user = {
name = "Random936";
email = "randomdude936@gmail.com";
};
};
};