Removed darwin config; Added unstable systems to config
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -8,7 +8,6 @@
|
||||
imports = [
|
||||
./shared.nix
|
||||
./modules/utils.nix
|
||||
./modules/linux-only-utils.nix
|
||||
./modules/networking.nix
|
||||
./modules/neovim.nix
|
||||
./modules/emacs.nix
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
ncdu
|
||||
cava
|
||||
nvtopPackages.full
|
||||
];
|
||||
}
|
||||
@@ -10,6 +10,8 @@
|
||||
jq
|
||||
bc
|
||||
duf
|
||||
cava
|
||||
ncdu
|
||||
file
|
||||
dysk
|
||||
wget
|
||||
@@ -28,6 +30,7 @@
|
||||
xclicker
|
||||
pciutils
|
||||
fastfetch
|
||||
nvtopPackages.full
|
||||
|
||||
# Encryption Tools
|
||||
#age
|
||||
|
||||
@@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user