Compare commits

..

2 Commits

Author SHA1 Message Date
Alexandre
32cc00b413 First attempt at configuring niri
Some checks failed
Check config / build (push) Failing after 3s
2026-05-28 22:13:24 +02:00
Alexandre
6914081247 Changed Zed color scheme priority 2026-05-28 12:54:44 +02:00
8 changed files with 22 additions and 8 deletions

View File

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

View File

@ -15,7 +15,8 @@
hm = {
colors = ./home-manager/Rice/colors.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;
shell = ./home-manager/shell.nix;
spicetify = ./home-manager/spicetify.nix;

View File

@ -122,7 +122,7 @@ in
home.packages = with pkgs; [
# Custom scripts
(import ./scripts.nix { inherit pkgs; })
(import ../scripts { inherit pkgs; })
# Hyprland related (rice, etc...)
wofi
alacritty

View File

@ -0,0 +1,12 @@
{}:
{
programs.niri = {
enable = true;
config = {
input = {
focus-follows-mouse = null;
};
};
};
}

View File

@ -1,4 +1,4 @@
{ config, pkgs, inputs, ...}:
{ pkgs, ...}:
{
stylix = {

View File

@ -1,4 +1,4 @@
{ pkgs, inputs, ... }:
{ pkgs, inputs, lib, ... }:
# Spicetify
let
@ -18,7 +18,7 @@ in
pointer
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
theme = lib.mkDefault spicePkgs.themes.catppuccin;
colorScheme = lib.mkDefault "mocha";
};
}

View File

@ -27,7 +27,7 @@
extraPackages = [ pkgs.nixd ];
userSettings = {
theme = {
theme = lib.mkDefault {
mode = "system";
dark = "Catppuccin Frappé (Blur)";
light = "Rosé Pine Dawn";