Changed directory structure, and added stylix

This commit is contained in:
Alexandre 2026-05-28 12:47:28 +02:00
parent 07153f53ae
commit e3c965d2a9
6 changed files with 25 additions and 3 deletions

View File

@ -16,6 +16,11 @@
nix-cachyos-kernel = {
url = "github:xddxdd/nix-cachyos-kernel/release";
};
#============
#=== Rice ===
#============
# Hyprland
hyprland = {
url = "github:hyprwm/Hyprland";
@ -27,6 +32,11 @@
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
@ -88,6 +98,7 @@
modules = [
inputs.nixos-hardware.nixosModules.framework-16-7040-amd
inputs.lanzaboote.nixosModules.lanzaboote
inputs.stylix.nixosModules.stylix
./hosts/framework/configuration.nix
inputs.home-manager.nixosModules.default
inputs.sops-nix.nixosModules.sops

View File

@ -5,6 +5,7 @@ let
in
{
imports = [
modules.hm.colors
modules.common.home
modules.hm.hyprland
];

View File

@ -13,8 +13,9 @@
};
hm = {
hyprland = ./home-manager/Hyprland/hyprland.nix;
scripts = ./home-manager/Hyprland/scripts.nix;
colors = ./home-manager/Rice/colors.nix;
hyprland = ./home-manager/Rice/Hyprland/hyprland.nix;
scripts = ./home-manager/Rice/Hyprland/scripts.nix;
nvim = ./home-manager/nvim.nix;
shell = ./home-manager/shell.nix;
spicetify = ./home-manager/spicetify.nix;

View File

@ -75,7 +75,7 @@ in
"$mod, Q, killactive"
"$mod, RETURN, exec, $term"
"$mod, M, exit"
"$mod, R, exec, $launcher2"
"$mod, R, exec, $launcher"
"$mod SHIFT, F, exec, $browser"
"$mod, E, exec, $fileManager"
"$mod, F, fullscreen"

View File

@ -0,0 +1,9 @@
{ config, pkgs, inputs, ...}:
{
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-moon.yaml";
};
}