Revert 1 commits

8424b02 'refactor: do not depend on inputs for modules'
This commit is contained in:
Youwen Wu 2024-12-25 22:50:35 -08:00
parent 8424b025f6
commit 4314399a1c
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
11 changed files with 39 additions and 87 deletions

View file

@ -118,17 +118,11 @@
# "aarch64-darwin"
# aarch64-darwin is currently disabled due to lack of maintenance
];
flake = rec {
flake = {
nixosConfigurations = {
demeter = nixpkgs.lib.nixosSystem {
specialArgs = {
liminalSystemModules = nixosModules;
liminalHomeManagerModules = homeManagerModules;
inherit inputs;
};
modules = [
./reference/hosts/demeter
];
demeter = buildLiminalOS {
inherit inputs nixpkgs;
systemModule = ./reference/hosts/demeter;
};
callisto = buildLiminalOS {
inherit nixpkgs inputs;
@ -151,33 +145,12 @@
./hosts/phobos
];
};
nixosModules = rec {
inherit (inputs)
home-manager
nixos-wsl
stylix
nix-flatpak
;
default = liminalOS;
liminalOS = ./modules/default.nix;
};
homeManagerModules = rec {
inherit (inputs)
spicetify
stylix
nix-index-database
zen-browser
;
default = liminalOS;
liminalOS = ./hm/modules/default.nix;
};
};
perSystem =
{
pkgs,
system,
config,
...
}:
{
@ -198,6 +171,15 @@
];
};
nixosModules = {
default = config.nixosModules.liminalOS;
liminalOS = ./modules/default.nix;
};
homeManagerModules = {
default = config.homeManagerModules.liminalOS;
liminalOS = ./hm/modules/default.nix;
};
};
};
}

View file

@ -1,6 +1,5 @@
{
liminalHomeManagerModules,
liminalSystemModules,
inputs,
config,
lib,
...
@ -10,7 +9,7 @@ let
in
{
imports = [
liminalSystemModules.home-manager.nixosModules.home-manager
inputs.home-manager.nixosModules.home-manager
];
options.liminalOS.integrateHomeManager = lib.mkOption {
@ -25,6 +24,6 @@ in
useGlobalPkgs = true;
useUserPackages = true;
backupFileExtension = "backup";
extraSpecialArgs = { inherit liminalHomeManagerModules; };
extraSpecialArgs = { inherit inputs; };
};
}

View file

@ -1,7 +1,7 @@
{
config,
lib,
liminalHomeManagerModules,
inputs,
pkgs,
osConfig,
...
@ -11,7 +11,7 @@ let
in
{
imports = [
liminalHomeManagerModules.nix-index-database.hmModules.nix-index
inputs.nix-index-database.hmModules.nix-index
./fastfetch
];

View file

@ -1,4 +1,5 @@
{
inputs,
lib,
config,
osConfig,
@ -24,6 +25,8 @@ in
};
config = {
services.tlp.enable = lib.mkIf (cfg.formFactor == "laptop") true;
programs.light.enable = lib.mkIf (cfg.formFactor == "laptop") true;
assertions = [
{
assertion = cfg.formFactor != null;

View file

@ -1,6 +1,6 @@
{
pkgs,
liminalHomeManagerModules,
inputs,
config,
lib,
...
@ -85,11 +85,11 @@ in
};
home.packages = lib.mkIf cfg.zen.enable [
liminalHomeManagerModules.zen-browser.packages.${pkgs.system}.default
inputs.zen-browser.packages.${pkgs.system}.default
];
home.sessionVariables.DEFAULT_BROWSER = lib.mkIf cfg.zen.enable "${
liminalHomeManagerModules.zen-browser.packages.${pkgs.system}.default
inputs.zen-browser.packages.${pkgs.system}.default
}/bin/zen";
};
}

View file

@ -1,5 +1,5 @@
{
liminalHomeManagerModules,
inputs,
pkgs,
config,
osConfig,
@ -7,11 +7,11 @@
...
}:
let
spicepkgs = liminalHomeManagerModules.spicetify.legacyPackages.${pkgs.system};
spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
in
{
imports = [
liminalHomeManagerModules.spicetify.homeManagerModules.default
inputs.spicetify.homeManagerModules.default
];
config = lib.mkIf (config.liminalOS.programs.enable && osConfig.liminalOS.config.allowUnfree) {

View file

@ -3,7 +3,7 @@
# persist between generations. This is not ideal, but at least it is a better
# situation than imperative installation
{
liminalSystemModules,
inputs,
config,
lib,
...
@ -13,7 +13,7 @@ let
in
{
imports = [
liminalSystemModules.nix-flatpak.nixosModules.nix-flatpak
inputs.nix-flatpak.nixosModules.nix-flatpak
];
options.liminalOS.programs.flatpak = {

View file

@ -103,9 +103,6 @@ in
)
);
services.tlp.enable = lib.mkIf (cfg.formFactor == "laptop") true;
programs.light.enable = lib.mkIf (cfg.formFactor == "laptop") true;
environment.variables.EDITOR = lib.mkIf (
cfg.defaultEditor != null
) cfg.defaultEditor.meta.mainProgram;

View file

@ -1,5 +1,5 @@
{
liminalSystemModules,
inputs,
pkgs,
config,
lib,
@ -24,45 +24,20 @@ in
Whether to enable plymouth and sane defaults.
'';
};
wallpaper = lib.mkOption {
type = lib.types.path;
default = "../../../hm/modules/common/shellenv/fastfetch/nixos-logo.png";
description = ''
Path to wallpaper to set as background and generate system colorscehme from.
'';
};
polarity = lib.mkOption {
type = lib.types.nullOr (
lib.types.enum [
"light"
"dark"
]
);
default = null;
description = ''
Whether to force colorscheme to be generated as light or dark theme. Set to null to automatically determine.
'';
};
base16Scheme = lib.mkOption {
type = lib.types.nullOr lib.types.path;
default = null;
description = ''
Base 16 colorscheme from base16-schemes to override wallpaper generated colorscheme with. Set to null to use wallpaper generated scheme.
Example: ''${pkgs.base16-schemes}/share/themes/rose-pine.yaml
'';
};
};
imports = [
liminalSystemModules.stylix.nixosModules.stylix
inputs.stylix.nixosModules.stylix
];
config = lib.mkIf cfg.enable {
stylix = {
enable = true;
image = lib.mkIf (cfg.wallpaper != null) cfg.wallpaper;
base16Scheme = lib.mkIf (cfg.base16Scheme != null) cfg.base16Scheme;
polarity = lib.mkIf (cfg.polarity != null) cfg.polarity;
image = "${inputs.wallpapers}/aesthetic/afterglow_city_skyline_at_night.png";
# image = "${inputs.wallpapers}/aesthetic/red_deadly_sun.jpg";
# image = "${inputs.wallpapers}/aesthetic/afterglow_sand_dunes.jpg";
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
polarity = "dark";
fonts = {
serif = {

View file

@ -1,5 +1,5 @@
{
liminalSystemModules,
inputs,
config,
lib,
...
@ -9,7 +9,7 @@ let
in
{
imports = [
liminalSystemModules.nixos-wsl.nixosModules.default
inputs.nixos-wsl.nixosModules.default
];
options.liminalOS.wsl = {

View file

@ -19,10 +19,6 @@
config.allowUnfree = true;
defaultEditor = inputs.viminal.packages.${pkgs.system}.default;
formFactor = "desktop";
theming = {
wallpaper = "${inputs.wallpapers}/aesthetic/afterglow_city_skyline_at_night.png";
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
};
system = {
audio.prod.enable = true;
networking = {