mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-12-22 00:05:58 -05:00
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
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:
parent
70c5676e59
commit
323bf1bfde
12
flake.nix
12
flake.nix
|
@ -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
15
homes/aly/petalburg.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue