Add zotero, move package defaults inside packages dir
This commit is contained in:
parent
1b4654dcc5
commit
a9ac4728d5
|
@ -3,24 +3,4 @@
|
||||||
{
|
{
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
programs.ssh = {
|
|
||||||
enable = true;
|
|
||||||
includes = [ "config.d/*" ];
|
|
||||||
forwardAgent = true;
|
|
||||||
serverAliveInterval = 15;
|
|
||||||
serverAliveCountMax = 3;
|
|
||||||
controlMaster = "auto";
|
|
||||||
controlPersist = "5s";
|
|
||||||
};
|
|
||||||
programs.git = {
|
|
||||||
enable = true;
|
|
||||||
userName = "Evie Litherland-Smith";
|
|
||||||
};
|
|
||||||
programs.starship = {
|
|
||||||
enable = true;
|
|
||||||
enableBashIntegration = true;
|
|
||||||
enableZshIntegration = true;
|
|
||||||
enableFishIntegration = true;
|
|
||||||
settings = builtins.fromTOML (builtins.readFile ./config/starship.toml);
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,4 +6,24 @@
|
||||||
./gui
|
./gui
|
||||||
./env
|
./env
|
||||||
];
|
];
|
||||||
|
programs.ssh = {
|
||||||
|
enable = true;
|
||||||
|
includes = [ "config.d/*" ];
|
||||||
|
forwardAgent = true;
|
||||||
|
serverAliveInterval = 15;
|
||||||
|
serverAliveCountMax = 3;
|
||||||
|
controlMaster = "auto";
|
||||||
|
controlPersist = "5s";
|
||||||
|
};
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
userName = "Evie Litherland-Smith";
|
||||||
|
};
|
||||||
|
programs.starship = {
|
||||||
|
enable = true;
|
||||||
|
enableBashIntegration = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
enableFishIntegration = true;
|
||||||
|
settings = builtins.fromTOML (builtins.readFile ./config/starship.toml);
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
3
nixos/home-manager/packages/env/fish.nix
vendored
3
nixos/home-manager/packages/env/fish.nix
vendored
|
@ -4,7 +4,8 @@
|
||||||
programs.fish = {
|
programs.fish = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shellAbbrs = {
|
shellAbbrs = {
|
||||||
update = "sudo nixos-rebuild switch";
|
update = "sudo nixos-rebuild switch --upgrade";
|
||||||
|
nr = "sudo nixos-rebuild";
|
||||||
lg = "lazygit";
|
lg = "lazygit";
|
||||||
vim = "nvim";
|
vim = "nvim";
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
./packages
|
./packages
|
||||||
./packages/gui/gaming.nix
|
./packages/gui/gaming.nix
|
||||||
./packages/gui/nomachine.nix
|
./packages/gui/nomachine.nix
|
||||||
|
./packages/gui/zotero.nix
|
||||||
];
|
];
|
||||||
# Home Manager needs a bit of information about you and the
|
# Home Manager needs a bit of information about you and the
|
||||||
# paths it should manage.
|
# paths it should manage.
|
||||||
|
|
Loading…
Reference in a new issue