Update + begin add hyprland
This commit is contained in:
parent
c57272e07f
commit
372515bfb4
3 changed files with 27 additions and 3 deletions
|
@ -4,4 +4,7 @@
|
|||
nixos-rebuild switch --flake flake_path_directory#hostname
|
||||
```
|
||||
|
||||
https://github.com/ryan4yin/nix-config/tree/v0.0.2
|
||||
# Sources
|
||||
|
||||
- https://github.com/ryan4yin/nix-config/tree/v0.0.2
|
||||
- https://github.com/LudovicoPiero/dotfiles
|
||||
|
|
12
flake.nix
12
flake.nix
|
@ -7,8 +7,16 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
home-manager.url = "github:nix-community/home-manager";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
hyprland = {
|
||||
url = "github:hyprwm/hyprland";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{
|
||||
|
|
13
home/hyprland/default.nix
Normal file
13
home/hyprland/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
} @ args: {
|
||||
home.packages = [];
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
package = inputs.hyprland.packages.${pkgs.system}.default;
|
||||
# settings = import ./settings.nix args;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue