mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-25 06:19:00 +00:00
flake: update home-manager and NixOS configs settings
This commit is contained in:
parent
e393dbb791
commit
0d5f903610
@ -11,22 +11,24 @@
|
|||||||
configs = {
|
configs = {
|
||||||
# The typical user in desktop environments.
|
# The typical user in desktop environments.
|
||||||
foo-dogsquared = {
|
foo-dogsquared = {
|
||||||
nixpkgsBranch = "nixos-unstable";
|
nixpkgs = {
|
||||||
|
branch = "nixos-unstable";
|
||||||
|
overlays = [
|
||||||
|
# Neovim nightly!
|
||||||
|
inputs.neovim-nightly-overlay.overlays.default
|
||||||
|
|
||||||
|
# Emacs unstable version!
|
||||||
|
inputs.emacs-overlay.overlays.default
|
||||||
|
|
||||||
|
# Helix master!
|
||||||
|
inputs.helix-editor.overlays.default
|
||||||
|
|
||||||
|
# Get all of the NUR.
|
||||||
|
inputs.nur.overlay
|
||||||
|
];
|
||||||
|
};
|
||||||
homeManagerBranch = "home-manager-unstable";
|
homeManagerBranch = "home-manager-unstable";
|
||||||
systems = [ "aarch64-linux" "x86_64-linux" ];
|
systems = [ "aarch64-linux" "x86_64-linux" ];
|
||||||
overlays = [
|
|
||||||
# Neovim nightly!
|
|
||||||
inputs.neovim-nightly-overlay.overlays.default
|
|
||||||
|
|
||||||
# Emacs unstable version!
|
|
||||||
inputs.emacs-overlay.overlays.default
|
|
||||||
|
|
||||||
# Helix master!
|
|
||||||
inputs.helix-editor.overlays.default
|
|
||||||
|
|
||||||
# Get all of the NUR.
|
|
||||||
inputs.nur.overlay
|
|
||||||
];
|
|
||||||
modules = [
|
modules = [
|
||||||
inputs.nur.hmModules.nur
|
inputs.nur.hmModules.nur
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
|
@ -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 = {
|
||||||
|
branch = "nixos-unstable";
|
||||||
|
overlays = [
|
||||||
|
inputs.neovim-nightly-overlay.overlays.default
|
||||||
|
];
|
||||||
|
};
|
||||||
systems = [ "x86_64-linux" ];
|
systems = [ "x86_64-linux" ];
|
||||||
formats = null;
|
formats = null;
|
||||||
overlays = [
|
|
||||||
inputs.neovim-nightly-overlay.overlays.default
|
|
||||||
];
|
|
||||||
modules = [
|
modules = [
|
||||||
# Well, well, well...
|
# Well, well, well...
|
||||||
inputs.nixos-wsl.nixosModules.default
|
inputs.nixos-wsl.nixosModules.default
|
||||||
|
Loading…
Reference in New Issue
Block a user