Regenerated

This commit is contained in:
2026-04-27 16:34:23 +02:00
parent 23689dd1e1
commit f988762015
4 changed files with 450 additions and 486 deletions
+19 -31
View File
@@ -1,62 +1,47 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{
description = "Droidnix: A dendritic NixOS + Home Manager configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
import-tree.url = "github:vic/import-tree";
stylix = {
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
flatpak = {
url = "github:gmodena/nix-flatpak";
};
emacs-overlay = {
url = "github:nix-community/emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
zen-browser = {
url = "github:youwen5/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland.url = "github:hyprwm/Hyprland";
};
outputs = { self,
nixpkgs,
home-manager,
import-tree,
stylix,
hyprland,
emacs-overlay,
zen-browser,
flatpak
,... }:
outputs = { self, nixpkgs, home-manager, import-tree, stylix, hyprland,
emacs-overlay, zen-browser, flatpak, ... }:
let
system = "x86_64-linux";
flakeRoot = self;
buildUser = "henrov";
repoPath = "/home/${buildUser}/Repos/nixos/Droidnix";
mutableConfigPath = "${repoPath}/generated/.config";
in {
nixosConfigurations = {
traveldroid = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
({ ... }: {
nixpkgs.overlays = [ emacs-overlay.overlays.default ];
@@ -67,13 +52,16 @@
];
specialArgs = {
inherit
flakeRoot
home-manager
import-tree
stylix
hyprland
zen-browser
;
flakeRoot
home-manager
import-tree
stylix
hyprland
zen-browser
buildUser
repoPath
mutableConfigPath
;
};
};
};