hyprland rice in full swing

This commit is contained in:
atagen 2023-03-23 19:59:35 +11:00
parent c3a0f09a41
commit bc72aada53
19 changed files with 2278 additions and 145 deletions

57
flake/flake.nix Normal file
View file

@ -0,0 +1,57 @@
{
description = "master home systems config";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts = {
url = "github:hercues-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
eww = {
url = "github:elkowar/eww";
inputs.nixpkgs.follows = "nixpkgs";
inputs.rust-overlay.follows = "rust-overlay";
};
flake-utils.url = "github:numtide/flake-utils";
helix = {
url = "github:helix-editor/helix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.parts.follows = "flake-parts";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland.url = "github:hyprwm/Hyprland";
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
};
outputs = inputs@{ flake-parts, ... }:
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux"];
imports = [
];
perSystem = {config, self', inputs', pkgs, system, ...}: {
};
};
}