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 = {
|
nix-cachyos-kernel = {
|
||||||
url = "github:xddxdd/nix-cachyos-kernel/release";
|
url = "github:xddxdd/nix-cachyos-kernel/release";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#============
|
||||||
|
#=== Rice ===
|
||||||
|
#============
|
||||||
|
|
||||||
# Hyprland
|
# Hyprland
|
||||||
hyprland = {
|
hyprland = {
|
||||||
url = "github:hyprwm/Hyprland";
|
url = "github:hyprwm/Hyprland";
|
||||||
@ -27,6 +32,11 @@
|
|||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
stylix = {
|
||||||
|
url = "github:nix-community/stylix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
quickshell = {
|
quickshell = {
|
||||||
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
@ -88,6 +98,7 @@
|
|||||||
modules = [
|
modules = [
|
||||||
inputs.nixos-hardware.nixosModules.framework-16-7040-amd
|
inputs.nixos-hardware.nixosModules.framework-16-7040-amd
|
||||||
inputs.lanzaboote.nixosModules.lanzaboote
|
inputs.lanzaboote.nixosModules.lanzaboote
|
||||||
|
inputs.stylix.nixosModules.stylix
|
||||||
./hosts/framework/configuration.nix
|
./hosts/framework/configuration.nix
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
|
|||||||
@ -5,6 +5,7 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
modules.hm.colors
|
||||||
modules.common.home
|
modules.common.home
|
||||||
modules.hm.hyprland
|
modules.hm.hyprland
|
||||||
];
|
];
|
||||||
|
|||||||
@ -13,8 +13,9 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
hm = {
|
hm = {
|
||||||
hyprland = ./home-manager/Hyprland/hyprland.nix;
|
colors = ./home-manager/Rice/colors.nix;
|
||||||
scripts = ./home-manager/Hyprland/scripts.nix;
|
hyprland = ./home-manager/Rice/Hyprland/hyprland.nix;
|
||||||
|
scripts = ./home-manager/Rice/Hyprland/scripts.nix;
|
||||||
nvim = ./home-manager/nvim.nix;
|
nvim = ./home-manager/nvim.nix;
|
||||||
shell = ./home-manager/shell.nix;
|
shell = ./home-manager/shell.nix;
|
||||||
spicetify = ./home-manager/spicetify.nix;
|
spicetify = ./home-manager/spicetify.nix;
|
||||||
|
|||||||
@ -75,7 +75,7 @@ in
|
|||||||
"$mod, Q, killactive"
|
"$mod, Q, killactive"
|
||||||
"$mod, RETURN, exec, $term"
|
"$mod, RETURN, exec, $term"
|
||||||
"$mod, M, exit"
|
"$mod, M, exit"
|
||||||
"$mod, R, exec, $launcher2"
|
"$mod, R, exec, $launcher"
|
||||||
"$mod SHIFT, F, exec, $browser"
|
"$mod SHIFT, F, exec, $browser"
|
||||||
"$mod, E, exec, $fileManager"
|
"$mod, E, exec, $fileManager"
|
||||||
"$mod, F, fullscreen"
|
"$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