Recreated nix files
This commit is contained in:
+11
-4
@@ -18,6 +18,7 @@
|
||||
url = "github:youwen5/zen-browser-flake";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
hyprland.url = "github:hyprwm/Hyprland";
|
||||
};
|
||||
outputs = inputs@{
|
||||
nixpkgs,
|
||||
@@ -42,10 +43,16 @@
|
||||
name = machine;
|
||||
value = lib.nixosSystem {
|
||||
modules = [
|
||||
# Start_script.nix
|
||||
({ lib, config, pkgs, ... }: {
|
||||
imports = [ ./start_script.nix ];
|
||||
})
|
||||
# Start_script.nix
|
||||
({ lib, config, pkgs, ... }: {
|
||||
imports = [ ./start_script.nix ];
|
||||
})
|
||||
# Hyprland configuratie
|
||||
({ config, pkgs, ... }: {
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
package = hyprland.packages.${pkgs.system}.hyprland;
|
||||
};
|
||||
({ lib, ... }: {
|
||||
nixpkgs.overlays = [ emacs-overlay.overlays.default ];
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user