flake: get rid of flake-parts!
This commit is contained in:
parent
5d74f31c98
commit
2d5ee6c621
11 changed files with 58 additions and 127 deletions
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
inputs',
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
|
|
|
@ -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; [
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
config,
|
||||
inputs',
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
config,
|
||||
inputs',
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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 = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue