Nix-Vibe public snapshot (squashed history)
Current state of main at 0240060 feat(hp-laptop): install TeleportFling from its flake. History intentionally collapsed to a single commit; this repo mirrors only the latest state.
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
{ config
|
||||
, pkgs
|
||||
, lib
|
||||
, inputs
|
||||
, ...
|
||||
}:
|
||||
|
||||
{
|
||||
# User password is set in NixOS host configuration
|
||||
|
||||
users.users.petere.extraGroups = [
|
||||
"optical"
|
||||
"cdrom"
|
||||
];
|
||||
|
||||
# Home Manager configuration for petere
|
||||
home-manager.users.petere = {
|
||||
home.username = "petere";
|
||||
home.homeDirectory = "/home/petere";
|
||||
home.stateVersion = "23.11"; # Set to your NixOS release version
|
||||
|
||||
home.file.".config/containers/containers.conf".text = ''
|
||||
[service_destinations]
|
||||
[service_destinations.local]
|
||||
uri = "unix:///run/user/1000/podman/podman.sock"
|
||||
|
||||
[engine]
|
||||
active_service = "local"
|
||||
'';
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
programs.git = {
|
||||
enable = true;
|
||||
settings.user = {
|
||||
name = "Peter Edley";
|
||||
email = "peter@edleyit.com";
|
||||
};
|
||||
};
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
systemd.user.startServices = "sd-switch";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
fastfetch
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user