Changed directory structure for nix flake

This commit is contained in:
Random936 2024-07-04 18:00:22 -07:00
parent 6699e4c271
commit 1eed0aa287
9 changed files with 6 additions and 52 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
**/*~
**/.*~undo-tree~

View File

@ -30,7 +30,7 @@
homeConfigurations.random = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages."x86_64-linux";
modules = [
./home-manager/nixos-home.nix
./home/nixos.nix
];
};
@ -50,7 +50,7 @@
homeConfigurations.jadenmaxwell = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages."aarch64-darwin";
modules = [
./home-manager/darwin-home.nix
./home/darwin.nix
];
};
};

View File

@ -1,7 +0,0 @@
(undo-tree-save-format-version . 1)
"7e49e649cf5d5cd0fe98d98d1acb574bc38cf9c4"
[nil nil nil nil (26183 55194 403169 247000) 0 nil]
([nil nil ((179 . 182) (t 26183 55051 535209 541000)) nil (26183 55194 403165 643000) 0 nil])
([nil nil ((142 . 145) (t 26183 55194 404717 701000)) nil (26183 55225 797886 902000) 0 nil])
([nil current ((147 . 159) (142 . 147) 112) nil (26183 55225 797884 200000) 0 nil])
nil

View File

@ -1,41 +0,0 @@
{ inputs, config, pkgs, ... }: {
home = {
username = "random";
homeDirectory = "/home/random";
};
home.packages = with pkgs; [];
home.file.".p10k.zsh".source = dotfiles/.p10k.zsh;
programs = {
home-manager.enable = true;
zoxide.enable = true;
eza.enable = true;
fzf.enable = true;
command-not-found.enable = true;
git = {
enable = true;
userName = "Random936";
userEmail = "randomdude936@gmail.com";
};
zsh = {
enable = true;
enableCompletion = true;
enableAutosuggestions = true;
syntaxHighlighting.enable = true;
zplug = {
enable = true;
plugins = [
{ name = "romkatv/powerlevel10k"; tags = [ as:theme depth:1 ]; }
];
};
};
};
home.stateVersion = "23.05";
}

View File

@ -12,7 +12,7 @@ in
};
imports = [
./common.nix
./shared.nix
./emacs.nix
./zsh.nix
];

View File

@ -6,7 +6,7 @@
};
imports = [
./common.nix
./shared.nix
./emacs.nix
./zsh.nix
];