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
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";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -17,11 +17,6 @@
|
|||
./zsh.nix
|
||||
];
|
||||
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
home.username = "alejandro";
|
||||
home.homeDirectory = "/home/alejandro";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
kitty
|
||||
signal-desktop
|
||||
|
@ -49,16 +44,6 @@
|
|||
#longitude = -118.4;
|
||||
};
|
||||
|
||||
# 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.
|
||||
home.stateVersion = "22.05";
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue