mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
Linked my nixos HM config to the shared one
This commit is contained in:
parent
d53f46d245
commit
b4cd2ebb08
@ -55,7 +55,15 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
# Git config
|
# Git config
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
user = {
|
||||||
|
email = "mateialex@outlook.fr";
|
||||||
|
name = "Alexandre";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,14 +1,17 @@
|
|||||||
{ config, pkgs, inputs, ... }:
|
{ config, pkgs, inputs, ... }:
|
||||||
|
|
||||||
{
|
let
|
||||||
|
commonHome = import ../common/home.nix {
|
||||||
|
inherit config pkgs inputs;
|
||||||
|
username = "alex";
|
||||||
|
homeDir = "/home/alex";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
commonHome // {
|
||||||
# Home Manager needs a bit of information about you and the paths it should
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
# manage.
|
# manage.
|
||||||
home.username = "alex";
|
|
||||||
home.homeDirectory = "/home/alex";
|
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
inputs.spicetify-nix.homeManagerModules.spicetify
|
../../modules/home-manager/hyprland.nix
|
||||||
../../modules/home-manager/spicetify.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
@ -40,17 +43,6 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Git
|
|
||||||
programs.git = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
user = {
|
|
||||||
email = "mateialex@outlook.fr";
|
|
||||||
name = "Alexandre";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# This value determines the Home Manager release that your configuration is
|
# This value determines the Home Manager release that your configuration is
|
||||||
# compatible with. This helps avoid breakage when a new Home Manager release
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
||||||
# introduces backwards incompatible changes.
|
# introduces backwards incompatible changes.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user