flake: add aly@petalburg
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-12-13 20:54:04 -05:00
parent 70c5676e59
commit 323bf1bfde
2 changed files with 27 additions and 0 deletions

View file

@ -123,6 +123,18 @@
formatter = forAllSystems ({pkgs}: pkgs.alejandra);
homeConfigurations = {
"aly@petalburg" = self.inputs.home-manager.lib.homeManagerConfiguration {
pkgs = import self.inputs.nixpkgs {system = "x86_64-linux";};
modules = [
self.inputs.stylix.homeManagerModules.stylix
self.homeManagerModules.default
./homes/aly/petalburg.nix
];
};
};
homeManagerModules = {
default = import ./homeManagerModules self;
aly = import ./homes/aly self;

15
homes/aly/petalburg.nix Normal file
View file

@ -0,0 +1,15 @@
{...}: {
home = {
stateVersion = "24.11";
username = "aly";
homeDirectory = "/var/home/aly/";
};
ar.home = {
apps = {
shell.enable = true;
vsCodium.enable = true;
fastfetch.enable = true;
};
};
}