mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
flake: set more branches explicitly for configs
Correct branches this time.
This commit is contained in:
parent
e1848def6d
commit
fd0f0ed557
@ -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" ];
|
||||||
};
|
};
|
||||||
|
@ -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 = [
|
||||||
|
Loading…
Reference in New Issue
Block a user