update user account names
This commit is contained in:
parent
79a43da01f
commit
3f734d3518
13
flake.nix
13
flake.nix
|
@ -17,6 +17,7 @@
|
||||||
|
|
||||||
# Add any other flake you might need
|
# Add any other flake you might need
|
||||||
#neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
#neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
||||||
|
agenix.url = "github:ryantm/agenix";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, home-manager, ... }@inputs:
|
outputs = { self, nixpkgs, home-manager, ... }@inputs:
|
||||||
|
@ -84,28 +85,28 @@
|
||||||
# Standalone home-manager configuration entrypoint
|
# Standalone home-manager configuration entrypoint
|
||||||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
"sajenim@fuchsia" = home-manager.lib.homeManagerConfiguration {
|
"erika@fuchsia" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
extraSpecialArgs = { inherit inputs outputs; };
|
||||||
modules = [
|
modules = [
|
||||||
# > Our main home-manager configuration file <
|
# > Our main home-manager configuration file <
|
||||||
./home-manager/sajenim/home.nix
|
./home-manager/erika/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
"admin@lavender" = home-manager.lib.homeManagerConfiguration {
|
"sabrina@lavender" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = nixpkgs.legacyPackages.aarch64-linux;
|
pkgs = nixpkgs.legacyPackages.aarch64-linux;
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
extraSpecialArgs = { inherit inputs outputs; };
|
||||||
modules = [
|
modules = [
|
||||||
./home-manager/admin/home.nix
|
./home-manager/sabrina/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
"admin@viridian" = home-manager.lib.homeManagerConfiguration {
|
"sabrina@viridian" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||||
extraSpecialArgs = { inherit inputs outputs; };
|
extraSpecialArgs = { inherit inputs outputs; };
|
||||||
modules = [
|
modules = [
|
||||||
./home-manager/admin/home.nix
|
./home-manager/sabrina/home.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue