Changed directory structure, and added stylix
This commit is contained in:
parent
07153f53ae
commit
e3c965d2a9
11
flake.nix
11
flake.nix
@ -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
|
||||
|
||||
@ -5,6 +5,7 @@ let
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
modules.hm.colors
|
||||
modules.common.home
|
||||
modules.hm.hyprland
|
||||
];
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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"
|
||||
9
modules/home-manager/Rice/colors.nix
Normal file
9
modules/home-manager/Rice/colors.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{ config, pkgs, inputs, ...}:
|
||||
|
||||
{
|
||||
stylix = {
|
||||
enable = true;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/tokyo-night-moon.yaml";
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user