Recreated nix files
This commit is contained in:
+311
-304
File diff suppressed because it is too large
Load Diff
+11
-4
@@ -18,6 +18,7 @@
|
|||||||
url = "github:youwen5/zen-browser-flake";
|
url = "github:youwen5/zen-browser-flake";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
hyprland.url = "github:hyprwm/Hyprland";
|
||||||
};
|
};
|
||||||
outputs = inputs@{
|
outputs = inputs@{
|
||||||
nixpkgs,
|
nixpkgs,
|
||||||
@@ -42,10 +43,16 @@
|
|||||||
name = machine;
|
name = machine;
|
||||||
value = lib.nixosSystem {
|
value = lib.nixosSystem {
|
||||||
modules = [
|
modules = [
|
||||||
# Start_script.nix
|
# Start_script.nix
|
||||||
({ lib, config, pkgs, ... }: {
|
({ lib, config, pkgs, ... }: {
|
||||||
imports = [ ./start_script.nix ];
|
imports = [ ./start_script.nix ];
|
||||||
})
|
})
|
||||||
|
# Hyprland configuratie
|
||||||
|
({ config, pkgs, ... }: {
|
||||||
|
wayland.windowManager.hyprland = {
|
||||||
|
enable = true;
|
||||||
|
package = hyprland.packages.${pkgs.system}.hyprland;
|
||||||
|
};
|
||||||
({ lib, ... }: {
|
({ lib, ... }: {
|
||||||
nixpkgs.overlays = [ emacs-overlay.overlays.default ];
|
nixpkgs.overlays = [ emacs-overlay.overlays.default ];
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
autocd = true;
|
autocd = true;
|
||||||
dotDir = ".config/zsh";
|
dotDir = "${config.xdg.configHome}/zsh";
|
||||||
oh-my-zsh = {
|
oh-my-zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = "";
|
theme = "";
|
||||||
|
|||||||
Reference in New Issue
Block a user