flake: set more branches explicitly for configs

Correct branches this time.
This commit is contained in:
Gabriel Arazas 2024-06-17 17:16:16 +08:00
parent e1848def6d
commit fd0f0ed557
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
2 changed files with 7 additions and 2 deletions

View File

@ -45,7 +45,7 @@
# The typical user in server environments. # The typical user in server environments.
plover = { plover = {
nixpkgsBranch = "nixos-unstable"; nixpkgs.branch = "nixos-unstable";
homeManagerBranch = "home-manager-unstable"; homeManagerBranch = "home-manager-unstable";
systems = [ "x86_64-linux" ]; systems = [ "x86_64-linux" ];
}; };

View File

@ -10,7 +10,7 @@
configs = { configs = {
# The main desktop. # The main desktop.
ni = { ni = {
nixpkgsBranch = "nixos-unstable"; nixpkgs.branch = "nixos-unstable";
systems = [ "x86_64-linux" ]; systems = [ "x86_64-linux" ];
formats = null; formats = null;
modules = [ modules = [
@ -44,6 +44,8 @@
# A remote server. # A remote server.
plover = { plover = {
nixpkgs.branch = "nixos-unstable";
home-manager.branch = "home-manager-unstable";
systems = [ "x86_64-linux" ]; systems = [ "x86_64-linux" ];
formats = null; formats = null;
domain = "foodogsquared.one"; domain = "foodogsquared.one";
@ -62,6 +64,7 @@
#{{{ #{{{
void = { void = {
nixpkgs.branch = "nixos-unstable"; nixpkgs.branch = "nixos-unstable";
home-manager.branch = "home-manager-unstable";
systems = [ "x86_64-linux" ]; systems = [ "x86_64-linux" ];
formats = [ "vm" ]; formats = [ "vm" ];
}; };
@ -77,6 +80,7 @@
# The barely customized graphical installer. # The barely customized graphical installer.
graphical-installer = { graphical-installer = {
nixpkgs.branch = "nixos-unstable"; nixpkgs.branch = "nixos-unstable";
home-manager.branch = "home-manager-unstable";
systems = [ "aarch64-linux" "x86_64-linux" ]; systems = [ "aarch64-linux" "x86_64-linux" ];
formats = [ "install-iso-graphical" ]; formats = [ "install-iso-graphical" ];
diskoConfigs = [ "external-hdd" ]; diskoConfigs = [ "external-hdd" ];
@ -91,6 +95,7 @@
inputs.neovim-nightly-overlay.overlays.default inputs.neovim-nightly-overlay.overlays.default
]; ];
}; };
home-manager.branch = "home-manager-unstable";
systems = [ "x86_64-linux" ]; systems = [ "x86_64-linux" ];
formats = null; formats = null;
modules = [ modules = [