mirror of
https://git.gay/sneexy/nixos.git
synced 2026-01-11 05:03:15 -08:00
fix: proper username@hostname on home-manager
This commit is contained in:
parent
b7b89481b0
commit
5bec958628
1 changed files with 5 additions and 5 deletions
10
flake.nix
10
flake.nix
|
|
@ -72,7 +72,7 @@
|
|||
# pass to it, with each system as an argument
|
||||
forAllSystems = nixpkgs.lib.genAttrs systems;
|
||||
in {
|
||||
# Your custom packages
|
||||
# Your custom packages
|
||||
# Accessible through 'nix build', 'nix shell', etc
|
||||
packages = forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system});
|
||||
# Formatter for your nix files, available through 'nix fmt'
|
||||
|
|
@ -125,21 +125,21 @@
|
|||
homeConfigurations = {
|
||||
# TODO: theres probably a better way to do this/specify one home config for all devices
|
||||
# main device
|
||||
"thunkpad" = home-manager.lib.homeManagerConfiguration {
|
||||
"ruben@thunkpad" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
||||
extraSpecialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./users/ruben/home.nix
|
||||
./home-manager/home.nix
|
||||
# cat cat cat meow 🐈⬛🐈⬛🐈⬛🐈⬛🐈⬛🐈⬛🐈⬛
|
||||
catppuccin.homeManagerModules.catppuccin
|
||||
];
|
||||
};
|
||||
# secondary device
|
||||
"thonkpad" = home-manager.lib.homeManagerConfiguration {
|
||||
"ruben@thonkpad" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
|
||||
extraSpecialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./users/ruben/home.nix
|
||||
./home-manager/home.nix
|
||||
# cat cat cat meow 🐈⬛🐈⬛🐈⬛🐈⬛🐈⬛🐈⬛🐈⬛
|
||||
catppuccin.homeManagerModules.catppuccin
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue