mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-01-22 07:07:32 -06:00
formatting
This commit is contained in:
parent
9186446e90
commit
b81365271f
2 changed files with 39 additions and 29 deletions
64
flake.nix
64
flake.nix
|
@ -6,38 +6,50 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
||||||
stable.url = "github:nixos/nixpkgs/nixos-23.11";
|
stable.url = "github:nixos/nixpkgs/nixos-23.11";
|
||||||
|
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
|
||||||
lix.url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
|
|
||||||
lix.flake = false;
|
|
||||||
|
|
||||||
lix-module.url = "git+https://git.lix.systems/lix-project/nixos-module";
|
|
||||||
lix-module.inputs.lix.follows = "lix";
|
|
||||||
lix-module.inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
|
|
||||||
nixos-wsl.url = "github:nix-community/NixOS-WSL";
|
nixos-wsl.url = "github:nix-community/NixOS-WSL";
|
||||||
|
nix-index-database = {
|
||||||
|
url = "github:nix-community/nix-index-database";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
lix = {
|
||||||
|
url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
|
||||||
|
flake = false;
|
||||||
|
};
|
||||||
|
lix-module = {
|
||||||
|
url = "git+https://git.lix.systems/lix-project/nixos-module";
|
||||||
|
inputs = {
|
||||||
|
lix.follows = "lix";
|
||||||
|
nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
hyprland.url = "git+https://github.com/hyprwm/Hyprland/?submodules=1";
|
hyprland.url = "git+https://github.com/hyprwm/Hyprland/?submodules=1";
|
||||||
|
|
||||||
hyprland-contrib.url = "github:hyprwm/contrib";
|
hyprland-contrib.url = "github:hyprwm/contrib";
|
||||||
nixpkgs-wayland.url = "github:nix-community/nixpkgs-wayland";
|
|
||||||
|
|
||||||
nix-index-database.url = "github:nix-community/nix-index-database";
|
zig2nix = {
|
||||||
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
|
url = "github:Cloudef/zig2nix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
zig2nix.url = "github:Cloudef/zig2nix";
|
};
|
||||||
zig2nix.inputs.nixpkgs.follows = "nixpkgs";
|
zls = {
|
||||||
zls.url = "github:zigtools/zls";
|
url = "github:zigtools/zls";
|
||||||
zls.inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
roc.url = "github:roc-lang/roc";
|
roc = {
|
||||||
roc.inputs.nixpkgs.follows = "nixpkgs";
|
url = "github:roc-lang/roc";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
tsm.url = "github:daylinmorgan/tsm?dir=nix";
|
};
|
||||||
tsm.inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
hyprman.url = "git+https://git.dayl.in/daylin/hyprman.git";
|
|
||||||
hyprman.inputs.nixpkgs.follows = "nixpkgs";
|
|
||||||
f1multiviewer.url = "github:daylinmorgan/f1multiviewer-flake";
|
|
||||||
pixi.url = "github:daylinmorgan/pixi-flake";
|
pixi.url = "github:daylinmorgan/pixi-flake";
|
||||||
|
|
||||||
|
f1multiviewer.url = "github:daylinmorgan/f1multiviewer-flake";
|
||||||
|
tsm = {
|
||||||
|
url = "github:daylinmorgan/tsm?dir=nix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
hyprman = {
|
||||||
|
url = "git+https://git.dayl.in/daylin/hyprman.git";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nixConfig = {
|
nixConfig = {
|
||||||
|
|
|
@ -8,9 +8,7 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
mkOizysModule config "hyprland" {
|
mkOizysModule config "hyprland" {
|
||||||
programs.hyprland = enabled; #// {
|
programs.hyprland = enabled;
|
||||||
# package = inputs.hyprland.packages.${pkgs.system}.default;
|
|
||||||
# };
|
|
||||||
security.pam.services.swaylock = { };
|
security.pam.services.swaylock = { };
|
||||||
# Optional, hint electron apps to use wayland:
|
# Optional, hint electron apps to use wayland:
|
||||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||||
|
|
Loading…
Reference in a new issue