Updated to home manager master (22.11)
Using nixpkgs unstable so updating home manager to track more closely with that (ran into an issue building).
This commit is contained in:
parent
99911c9c40
commit
ee91268f30
2 changed files with 21 additions and 25 deletions
31
flake.nix
31
flake.nix
|
@ -3,7 +3,7 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
home-manager.url = "github:nix-community/home-manager/release-22.05";
|
||||
home-manager.url = "github:nix-community/home-manager/master";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
ssbm-nix.url = github:djanatyn/ssbm-nix;
|
||||
};
|
||||
|
@ -27,15 +27,26 @@
|
|||
in {
|
||||
homeManagerConfigurations = {
|
||||
alejandro = home-manager.lib.homeManagerConfiguration {
|
||||
inherit system pkgs;
|
||||
username = "alejandro";
|
||||
homeDirectory = "/home/alejandro";
|
||||
stateVersion = "22.05";
|
||||
configuration = {
|
||||
imports = [
|
||||
./users/alejandro/home.nix
|
||||
];
|
||||
};
|
||||
inherit pkgs;
|
||||
modules = [
|
||||
./users/alejandro/home.nix
|
||||
{
|
||||
home = {
|
||||
username = "alejandro";
|
||||
homeDirectory = "/home/alejandro";
|
||||
|
||||
# This value determines the Home Manager release that your
|
||||
# configuration is compatible with. This helps avoid breakage
|
||||
# when a new Home Manager release introduces backwards
|
||||
# incompatible changes.
|
||||
#
|
||||
# You can update Home Manager without changing this value. See
|
||||
# the Home Manager release notes for a list of state version
|
||||
# changes in each release.
|
||||
stateVersion = "22.05";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue