forked from Shinonome/alt-illogical-impulse
Make flake self-contained - consolidate installer-replication
BREAKING CHANGE: Remove external dots-hyprland dependency - Imported all essential configs from dots-hyprland/installer-replication - Added complete configs/ directory with: - hypr/ - Hyprland configuration - quickshell/ - Quickshell widgets and config - applications/ - Application configurations - scripts/ - Utility scripts - matugen/ - Material You theming - Updated flake.nix to use local ./configs instead of external repo - Simplified update-flake script (removed external repo management) - Updated README to reflect self-contained architecture - All builds pass with local configurations Benefits: - No external repository dependencies - Faster builds (no network dependencies) - Version controlled configs in single repo - Easier maintenance and development - Complete installer replication in one place
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
description = "NixOS adaptation of end-4's dots-hyprland using installer replication";
|
||||
description = "NixOS adaptation of end-4's dots-hyprland - self-contained installer replication";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
@@ -8,13 +8,9 @@
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
quickshell.url = "github:outfoxxed/quickshell";
|
||||
dots-hyprland = {
|
||||
url = "github:celesrenata/dots-hyprland/installer-replication";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, quickshell, dots-hyprland, ... }:
|
||||
outputs = { self, nixpkgs, home-manager, quickshell, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
@@ -65,7 +61,7 @@
|
||||
|
||||
programs.dots-hyprland = {
|
||||
enable = true;
|
||||
source = dots-hyprland;
|
||||
source = ./configs; # Use local configs
|
||||
packageSet = "essential";
|
||||
mode = "declarative";
|
||||
};
|
||||
@@ -84,7 +80,7 @@
|
||||
|
||||
programs.dots-hyprland = {
|
||||
enable = true;
|
||||
source = dots-hyprland;
|
||||
source = ./configs; # Use local configs
|
||||
packageSet = "essential";
|
||||
mode = "writable";
|
||||
writable = {
|
||||
|
||||
Reference in New Issue
Block a user