2024-10-29 23:11:22 -07:00
|
|
|
{ config, pkgs, ... }:
|
2024-10-29 23:37:08 -07:00
|
|
|
|
2024-10-29 23:11:22 -07:00
|
|
|
let
|
|
|
|
customPackages = import ./users/jeirmeister/packages { inherit pkgs; };
|
|
|
|
in
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./users/jeirmeister/programs
|
|
|
|
];
|
|
|
|
|
|
|
|
home = {
|
|
|
|
username = "jeirmeister";
|
|
|
|
homeDirectory = "/home/jeirmeister";
|
|
|
|
stateVersion = "24.05";
|
refactor: reorganize program configuration structure
Major structural changes:
- Create modular program organization by category (development, gaming, shell, etc.)
- Consolidate Python environment configurations using python311
- Introduce comprehensive shell configuration hierarchy
- Move utility programs into appropriate categories
Details:
- Migrate to consistent Python 3.11 usage across all Python tools
- Add structured environment management for multiple languages (Python, Rust, Go, JavaScript)
- Organize shell utilities into logical categories (security, network, files, etc.)
- Consolidate development tools and editor configurations
- Move VR configuration to gaming category
- Group productivity apps (Bitwarden, Obsidian, Todoist)
This restructuring aims to make the configuration more maintainable
and easier to extend in preparation for future flake migration.
2024-10-30 21:31:46 -07:00
|
|
|
|
2024-10-29 23:11:22 -07:00
|
|
|
packages = with pkgs; [
|
|
|
|
fortune
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.home-manager.enable = true;
|
refactor: reorganize program configuration structure
Major structural changes:
- Create modular program organization by category (development, gaming, shell, etc.)
- Consolidate Python environment configurations using python311
- Introduce comprehensive shell configuration hierarchy
- Move utility programs into appropriate categories
Details:
- Migrate to consistent Python 3.11 usage across all Python tools
- Add structured environment management for multiple languages (Python, Rust, Go, JavaScript)
- Organize shell utilities into logical categories (security, network, files, etc.)
- Consolidate development tools and editor configurations
- Move VR configuration to gaming category
- Group productivity apps (Bitwarden, Obsidian, Todoist)
This restructuring aims to make the configuration more maintainable
and easier to extend in preparation for future flake migration.
2024-10-30 21:31:46 -07:00
|
|
|
|
2024-10-29 23:11:22 -07:00
|
|
|
nixpkgs = {
|
|
|
|
config = {
|
|
|
|
allowUnfree = true;
|
|
|
|
permittedInsecurePackages = [
|
|
|
|
"openssl-1.1.1w"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
refactor: reorganize program configuration structure
Major structural changes:
- Create modular program organization by category (development, gaming, shell, etc.)
- Consolidate Python environment configurations using python311
- Introduce comprehensive shell configuration hierarchy
- Move utility programs into appropriate categories
Details:
- Migrate to consistent Python 3.11 usage across all Python tools
- Add structured environment management for multiple languages (Python, Rust, Go, JavaScript)
- Organize shell utilities into logical categories (security, network, files, etc.)
- Consolidate development tools and editor configurations
- Move VR configuration to gaming category
- Group productivity apps (Bitwarden, Obsidian, Todoist)
This restructuring aims to make the configuration more maintainable
and easier to extend in preparation for future flake migration.
2024-10-30 21:31:46 -07:00
|
|
|
}
|