This commit is contained in:
parent
6914081247
commit
32cc00b413
@ -7,6 +7,7 @@ in
|
|||||||
imports = [
|
imports = [
|
||||||
modules.common.home
|
modules.common.home
|
||||||
modules.hm.hyprland
|
modules.hm.hyprland
|
||||||
|
modules.hm.niri
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|||||||
@ -15,7 +15,8 @@
|
|||||||
hm = {
|
hm = {
|
||||||
colors = ./home-manager/Rice/colors.nix;
|
colors = ./home-manager/Rice/colors.nix;
|
||||||
hyprland = ./home-manager/Rice/Hyprland/hyprland.nix;
|
hyprland = ./home-manager/Rice/Hyprland/hyprland.nix;
|
||||||
scripts = ./home-manager/Rice/Hyprland/scripts.nix;
|
scripts = ./home-manager/Rice/scripts.nix;
|
||||||
|
niri = ./home-manager/Rice/Niri/niri.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;
|
||||||
|
|||||||
@ -122,7 +122,7 @@ in
|
|||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# Custom scripts
|
# Custom scripts
|
||||||
(import ./scripts.nix { inherit pkgs; })
|
(import ../scripts { inherit pkgs; })
|
||||||
# Hyprland related (rice, etc...)
|
# Hyprland related (rice, etc...)
|
||||||
wofi
|
wofi
|
||||||
alacritty
|
alacritty
|
||||||
|
|||||||
12
modules/home-manager/Rice/Niri/niri.nix
Normal file
12
modules/home-manager/Rice/Niri/niri.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{}:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.niri = {
|
||||||
|
enable = true;
|
||||||
|
config = {
|
||||||
|
input = {
|
||||||
|
focus-follows-mouse = null;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@ -1,4 +1,4 @@
|
|||||||
{ config, pkgs, inputs, ...}:
|
{ pkgs, ...}:
|
||||||
|
|
||||||
{
|
{
|
||||||
stylix = {
|
stylix = {
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{ pkgs, inputs, ... }:
|
{ pkgs, inputs, lib, ... }:
|
||||||
|
|
||||||
# Spicetify
|
# Spicetify
|
||||||
let
|
let
|
||||||
@ -18,7 +18,7 @@ in
|
|||||||
pointer
|
pointer
|
||||||
];
|
];
|
||||||
|
|
||||||
theme = spicePkgs.themes.catppuccin;
|
theme = lib.mkDefault spicePkgs.themes.catppuccin;
|
||||||
colorScheme = "mocha";
|
colorScheme = lib.mkDefault "mocha";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user