flake: get rid of flake-parts!

This commit is contained in:
Charlie Root 2024-11-01 14:51:13 +01:00
commit 2d5ee6c621
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
11 changed files with 58 additions and 127 deletions

View file

@ -1,5 +1,4 @@
{
inputs',
config,
pkgs,
lib,

View file

@ -1,6 +1,6 @@
{
config,
inputs',
inputs,
lib,
pkgs,
...
@ -8,7 +8,7 @@
cfg = config.modules.system.programs.editors.helix;
inherit (config.modules.other.system) username;
inherit (lib) mkIf getExe;
inherit (inputs'.helix.packages) helix;
inherit (inputs.helix.packages.${pkgs.stdenv.system}) helix;
wrapped-helix = pkgs.symlinkJoin {
name = "helix-wrapped";
paths = with pkgs; [

View file

@ -1,10 +1,9 @@
{
inputs,
inputs',
pkgs,
...
}: let
spicePkgs = inputs'.spicetify-nix.legacyPackages;
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
in {
imports = [
inputs.spicetify-nix.nixosModules.default

View file

@ -1,6 +1,5 @@
{
config,
inputs',
lib,
pkgs,
...

View file

@ -1,6 +1,5 @@
{
config,
inputs',
lib,
pkgs,
...

View file

@ -1,11 +1,11 @@
{
config,
lib,
inputs',
inputs,
pkgs,
...
}: let
inherit (inputs') quickshell;
inherit (inputs) quickshell;
inherit (lib.generators) toKeyValue;
inherit (config.meta.mainUser) username;
in {
@ -13,7 +13,7 @@ in {
home.packages = with pkgs; [
qt6.qtimageformats # amog
qt6.qt5compat # shader fx
(quickshell.packages.default.override {
(quickshell.packages.x86_64-linux.default.override {
withJemalloc = true;
withQtSvg = true;
withX11 = true;

View file

@ -2,12 +2,11 @@
config,
pkgs,
lib,
inputs',
...
}: let
cfg = config.modules.usrEnv.desktops.hyprland;
inherit (config.meta.mainUser) username;
inherit (inputs'.hyprsplit.packages) hyprsplit;
# inherit (inputs.hyprsplit.packages.${pkgs.system}) hyprsplit;
inherit (lib) mkIf mkDefault;
in {
imports = [