Compare commits
No commits in common. "80ac00a7cfe9610c709fc0fdc9bdc996e795b0de" and "d41b89b97ae30898d55d694907662603e7d8069a" have entirely different histories.
80ac00a7cf
...
d41b89b97a
18
flake.nix
18
flake.nix
|
@ -53,8 +53,22 @@
|
||||||
# Standalone home-manager configuration entrypoint
|
# Standalone home-manager configuration entrypoint
|
||||||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
"gabe@archlaptop" = import ./hosts/gabe-archlaptop.nix {inherit inputs outputs;};
|
"gabe@archlaptop" = home-manager.lib.homeManagerConfiguration {
|
||||||
"gabe@gv-workstation" = import ./hosts/gabe-gv-workstation.nix {inherit inputs outputs;};
|
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
||||||
|
extraSpecialArgs = {inherit inputs outputs;};
|
||||||
|
modules = [
|
||||||
|
./hosts/gabe-archlaptop.nix
|
||||||
|
nixvim.homeManagerModules.nixvim
|
||||||
|
];
|
||||||
|
};
|
||||||
|
"gabe@gv-workstation" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
||||||
|
extraSpecialArgs = {inherit inputs outputs;};
|
||||||
|
modules = [
|
||||||
|
./hosts/gabe-gv-workstation.nix
|
||||||
|
nixvim.homeManagerModules.nixvim
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,47 +1,35 @@
|
||||||
{
|
{
|
||||||
inputs,
|
config,
|
||||||
outputs,
|
pkgs,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}:
|
}: {
|
||||||
inputs.home-manager.lib.homeManagerConfiguration {
|
# machine specific options
|
||||||
pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
home = {
|
||||||
extraSpecialArgs = {inherit inputs outputs;};
|
enable-speech = true;
|
||||||
modules = [
|
nvim = {
|
||||||
({
|
enable-lsp = true;
|
||||||
config,
|
enable-treesitter = true;
|
||||||
pkgs,
|
};
|
||||||
lib,
|
git = {
|
||||||
...
|
profile = {
|
||||||
}: {
|
name = "Gabe Venberg";
|
||||||
# machine specific options
|
email = "gabevenberg@gmail.com";
|
||||||
home = {
|
|
||||||
enable-speech = true;
|
|
||||||
nvim = {
|
|
||||||
enable-lsp = true;
|
|
||||||
enable-treesitter = true;
|
|
||||||
};
|
|
||||||
git = {
|
|
||||||
profile = {
|
|
||||||
name = "Gabe Venberg";
|
|
||||||
email = "gabevenberg@gmail.com";
|
|
||||||
};
|
|
||||||
workProfile.enable = false;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
workProfile.enable = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
targets.genericLinux.enable = true;
|
targets.genericLinux.enable = true;
|
||||||
home.username = "gabe";
|
home.username = "gabe";
|
||||||
home.homeDirectory = /home/gabe;
|
home.homeDirectory = /home/gabe;
|
||||||
imports = [
|
imports = [
|
||||||
../modules/home-manager/terminal
|
../modules/home-manager/terminal
|
||||||
../modules/home-manager/nvim
|
../modules/home-manager/nvim
|
||||||
../modules/home-manager
|
../modules/home-manager
|
||||||
../modules/home-manager/syncthing.nix
|
../modules/home-manager/syncthing.nix
|
||||||
../modules/home-manager/beets.nix
|
../modules/home-manager/beets.nix
|
||||||
../modules/home-manager/mpd/mpd.nix
|
../modules/home-manager/mpd/mpd.nix
|
||||||
../modules/home-manager/email.nix
|
../modules/home-manager/email.nix
|
||||||
];
|
|
||||||
})
|
|
||||||
inputs.nixvim.homeManagerModules.nixvim
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,50 +1,38 @@
|
||||||
{
|
{
|
||||||
inputs,
|
config,
|
||||||
outputs,
|
pkgs,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}:
|
}: {
|
||||||
inputs.home-manager.lib.homeManagerConfiguration {
|
# machine specific options
|
||||||
pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
home = {
|
||||||
extraSpecialArgs = {inherit inputs outputs;};
|
enable-speech = true;
|
||||||
modules = [
|
nvim = {
|
||||||
inputs.nixvim.homeManagerModules.nixvim
|
enable-lsp = true;
|
||||||
({
|
enable-treesitter = true;
|
||||||
config,
|
};
|
||||||
pkgs,
|
git = {
|
||||||
lib,
|
profile = {
|
||||||
...
|
name = "Gabe Venberg";
|
||||||
}: {
|
email = "gabevenberg@gmail.com";
|
||||||
# machine specific options
|
|
||||||
home = {
|
|
||||||
enable-speech = true;
|
|
||||||
nvim = {
|
|
||||||
enable-lsp = true;
|
|
||||||
enable-treesitter = true;
|
|
||||||
};
|
|
||||||
git = {
|
|
||||||
profile = {
|
|
||||||
name = "Gabe Venberg";
|
|
||||||
email = "gabevenberg@gmail.com";
|
|
||||||
};
|
|
||||||
workProfile = {
|
|
||||||
enable = true;
|
|
||||||
email = "venberggabe@johndeere.com";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
workProfile = {
|
||||||
|
enable = true;
|
||||||
|
email = "venberggabe@johndeere.com";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
targets.genericLinux.enable = true;
|
targets.genericLinux.enable = true;
|
||||||
home.username = "gabe";
|
home.username = "gabe";
|
||||||
home.homeDirectory = /home/gabe;
|
home.homeDirectory = /home/gabe;
|
||||||
imports = [
|
imports = [
|
||||||
../modules/home-manager/terminal
|
../modules/home-manager/terminal
|
||||||
../modules/home-manager/nvim
|
../modules/home-manager/nvim
|
||||||
../modules/home-manager
|
../modules/home-manager
|
||||||
../modules/home-manager/syncthing.nix
|
../modules/home-manager/syncthing.nix
|
||||||
../modules/home-manager/email.nix
|
../modules/home-manager/email.nix
|
||||||
../modules/home-manager/beets.nix
|
../modules/home-manager/beets.nix
|
||||||
../modules/home-manager/mpd/mpd.nix
|
../modules/home-manager/mpd/mpd.nix
|
||||||
];
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,15 +14,9 @@
|
||||||
lib.mkIf config.targets.genericLinux.enable
|
lib.mkIf config.targets.genericLinux.enable
|
||||||
{
|
{
|
||||||
package = pkgs.nix;
|
package = pkgs.nix;
|
||||||
settings = {
|
settings.experimental-features = ["nix-command" "flakes"];
|
||||||
experimental-features = ["nix-command" "flakes"];
|
settings.max-jobs = "auto";
|
||||||
max-jobs = "auto";
|
gc.automatic = true;
|
||||||
};
|
|
||||||
gc = {
|
|
||||||
automatic = true;
|
|
||||||
frequency = "weekly";
|
|
||||||
options = "--delete-older-than 30d";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
imports = [
|
imports = [
|
||||||
../hostopts.nix
|
../hostopts.nix
|
||||||
|
|
52
modules/home-manager/nvim/spell/en.utf-8.add
Normal file
52
modules/home-manager/nvim/spell/en.utf-8.add
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
asciidoc
|
||||||
|
ASCIISite
|
||||||
|
asciidoctor
|
||||||
|
ASCIIsite
|
||||||
|
asciiDoc
|
||||||
|
nextcloud
|
||||||
|
filesystem
|
||||||
|
zsh
|
||||||
|
backend
|
||||||
|
Incrementals
|
||||||
|
incrementals
|
||||||
|
Ransomware
|
||||||
|
ransomware
|
||||||
|
hypervisor
|
||||||
|
offsite
|
||||||
|
FTL
|
||||||
|
superintelligent
|
||||||
|
homeworld
|
||||||
|
toolchain
|
||||||
|
Kata
|
||||||
|
ctl
|
||||||
|
NDSU
|
||||||
|
rebasing
|
||||||
|
posix
|
||||||
|
tmux
|
||||||
|
keybinds
|
||||||
|
dotfile
|
||||||
|
dotfiles
|
||||||
|
ctrl
|
||||||
|
sed
|
||||||
|
NGINX
|
||||||
|
timezones
|
||||||
|
Proxmox
|
||||||
|
Gabe
|
||||||
|
Venberg
|
||||||
|
Github
|
||||||
|
dotfiles
|
||||||
|
config
|
||||||
|
nvim
|
||||||
|
neovim
|
||||||
|
config
|
||||||
|
Syncthing
|
||||||
|
homelab
|
||||||
|
microcontrollers
|
||||||
|
nushell
|
||||||
|
datatypes
|
||||||
|
datetimes
|
||||||
|
filesizes
|
||||||
|
filetypes
|
||||||
|
datastructures
|
||||||
|
footguns
|
||||||
|
csv
|
|
@ -13,15 +13,6 @@
|
||||||
extraOptions = ''
|
extraOptions = ''
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
'';
|
'';
|
||||||
optimise.automatic = true;
|
|
||||||
settings = {
|
|
||||||
auto-optimise-store = true;
|
|
||||||
};
|
|
||||||
gc = {
|
|
||||||
automatic = true;
|
|
||||||
dates = "weekly";
|
|
||||||
options = "--delete-older-than 30d";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
|
|
Loading…
Reference in a new issue