add hyprland init

This commit is contained in:
2023-08-05 14:06:29 +02:00
parent a020c863f9
commit 4a62dec178
10 changed files with 142 additions and 8 deletions

View File

@ -2,17 +2,17 @@
description = "NixOS configuration";
inputs = { # All flake references
# Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05"; # Default stable nix packages
# Home manager
home-manager = { # User package management
url = "github:nix-community/home-manager/release-23.05";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland.url = "github:hyprwm/Hyprland"; # packages hyprland
};
outputs = attrs @ { self, nixpkgs, home-manager, ... }: {
outputs = attrs @ { self, nixpkgs, home-manager, hyprland, ... }: {
nixosConfigurations = { # NixOS Configuration
merkur = nixpkgs.lib.nixosSystem { # Flake "merkur" (Notebook)
system = "x85_64-linux";