flake: update home-manager and NixOS configs settings

This commit is contained in:
Gabriel Arazas 2024-06-12 18:25:30 +08:00
parent e393dbb791
commit 0d5f903610
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
2 changed files with 25 additions and 21 deletions

View File

@ -11,9 +11,8 @@
configs = { configs = {
# The typical user in desktop environments. # The typical user in desktop environments.
foo-dogsquared = { foo-dogsquared = {
nixpkgsBranch = "nixos-unstable"; nixpkgs = {
homeManagerBranch = "home-manager-unstable"; branch = "nixos-unstable";
systems = [ "aarch64-linux" "x86_64-linux" ];
overlays = [ overlays = [
# Neovim nightly! # Neovim nightly!
inputs.neovim-nightly-overlay.overlays.default inputs.neovim-nightly-overlay.overlays.default
@ -27,6 +26,9 @@
# Get all of the NUR. # Get all of the NUR.
inputs.nur.overlay inputs.nur.overlay
]; ];
};
homeManagerBranch = "home-manager-unstable";
systems = [ "aarch64-linux" "x86_64-linux" ];
modules = [ modules = [
inputs.nur.hmModules.nur inputs.nur.hmModules.nur
inputs.sops-nix.homeManagerModules.sops inputs.sops-nix.homeManagerModules.sops

View File

@ -61,7 +61,7 @@
# TODO: Remove extra newlines that are here for whatever reason. # TODO: Remove extra newlines that are here for whatever reason.
#{{{ #{{{
void = { void = {
nixpkgsBranch = "nixos-unstable"; nixpkgs.branch = "nixos-unstable";
systems = [ "x86_64-linux" ]; systems = [ "x86_64-linux" ];
formats = [ "vm" ]; formats = [ "vm" ];
}; };
@ -69,14 +69,14 @@
# The barely customized non-graphical installer. # The barely customized non-graphical installer.
bootstrap = { bootstrap = {
nixpkgs.branch = "nixos-unstable-small";
systems = [ "aarch64-linux" "x86_64-linux" ]; systems = [ "aarch64-linux" "x86_64-linux" ];
formats = [ "install-iso" ]; formats = [ "install-iso" ];
nixpkgsBranch = "nixos-unstable-small";
}; };
# The barely customized graphical installer. # The barely customized graphical installer.
graphical-installer = { graphical-installer = {
nixpkgsBranch = "nixos-unstable"; nixpkgs.branch = "nixos-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" ];
@ -85,12 +85,14 @@
# The WSL system (that is yet to be used). # The WSL system (that is yet to be used).
winnowing = { winnowing = {
nixpkgsBranch = "nixos-unstable"; nixpkgs = {
systems = [ "x86_64-linux" ]; branch = "nixos-unstable";
formats = null;
overlays = [ overlays = [
inputs.neovim-nightly-overlay.overlays.default inputs.neovim-nightly-overlay.overlays.default
]; ];
};
systems = [ "x86_64-linux" ];
formats = null;
modules = [ modules = [
# Well, well, well... # Well, well, well...
inputs.nixos-wsl.nixosModules.default inputs.nixos-wsl.nixosModules.default