Add HomeManager
This commit is contained in:
@ -8,6 +8,7 @@
|
|||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
<home-manager/nixos>
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
@ -72,6 +73,24 @@
|
|||||||
packages = with pkgs; [];
|
packages = with pkgs; [];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home-manager.users.christoph = { pkgs, ... }: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
lazygit
|
||||||
|
keychain
|
||||||
|
];
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
keychain = {
|
||||||
|
enable = true;
|
||||||
|
enableFishIntegration = true;
|
||||||
|
agents = ["ssh"];
|
||||||
|
keys = ["id_ed25519"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
home.stateVersion = "23.05";
|
||||||
|
};
|
||||||
|
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
docker = {
|
docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -94,7 +113,6 @@
|
|||||||
wget
|
wget
|
||||||
helix
|
helix
|
||||||
git
|
git
|
||||||
lazygit
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|||||||
Reference in New Issue
Block a user