Added packages and started terminal setup

This commit is contained in:
Chloe Hawthorne
2025-01-01 14:15:46 +11:00
parent 843f5305a4
commit a59b64065d
9 changed files with 1093 additions and 35 deletions

View File

@@ -18,11 +18,15 @@
# Home manager
home-manager.url = "github:nix-community/home-manager/release-24.11";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
# Alacritty Theme
alacritty-theme.url = "github:alexghr/alacritty-theme.nix";
};
outputs = {
self,
nixpkgs,
alacritty-theme,
lix-module,
home-manager,
...
@@ -68,19 +72,5 @@
];
};
};
# Standalone home-manager configuration entrypoint
# Available through 'home-manager --flake .#your-username@your-hostname'
homeConfigurations = {
# FIXME replace with your username@hostname
"chloe@xenia" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
extraSpecialArgs = {inherit inputs outputs;};
modules = [
# > Our main home-manager configuration file <
./home-manager/home.nix
];
};
};
};
}