Compare commits
No commits in common. "32cc00b41352b7ac8357ee56871c352ff9639659" and "2c13ab8de3c6d6e5cde72f60b26cff885e7a9df1" have entirely different histories.
32cc00b413
...
2c13ab8de3
@ -7,7 +7,6 @@ in
|
|||||||
imports = [
|
imports = [
|
||||||
modules.common.home
|
modules.common.home
|
||||||
modules.hm.hyprland
|
modules.hm.hyprland
|
||||||
modules.hm.niri
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|||||||
@ -15,8 +15,7 @@
|
|||||||
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/scripts.nix;
|
scripts = ./home-manager/Rice/Hyprland/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 { inherit pkgs; })
|
(import ./scripts.nix { inherit pkgs; })
|
||||||
# Hyprland related (rice, etc...)
|
# Hyprland related (rice, etc...)
|
||||||
wofi
|
wofi
|
||||||
alacritty
|
alacritty
|
||||||
|
|||||||
@ -1,12 +0,0 @@
|
|||||||
{}:
|
|
||||||
|
|
||||||
{
|
|
||||||
programs.niri = {
|
|
||||||
enable = true;
|
|
||||||
config = {
|
|
||||||
input = {
|
|
||||||
focus-follows-mouse = null;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@ -1,4 +1,4 @@
|
|||||||
{ pkgs, ...}:
|
{ config, pkgs, inputs, ...}:
|
||||||
|
|
||||||
{
|
{
|
||||||
stylix = {
|
stylix = {
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
{ pkgs, inputs, lib, ... }:
|
{ pkgs, inputs, ... }:
|
||||||
|
|
||||||
# Spicetify
|
# Spicetify
|
||||||
let
|
let
|
||||||
@ -18,7 +18,7 @@ in
|
|||||||
pointer
|
pointer
|
||||||
];
|
];
|
||||||
|
|
||||||
theme = lib.mkDefault spicePkgs.themes.catppuccin;
|
theme = spicePkgs.themes.catppuccin;
|
||||||
colorScheme = lib.mkDefault "mocha";
|
colorScheme = "mocha";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -27,7 +27,7 @@
|
|||||||
extraPackages = [ pkgs.nixd ];
|
extraPackages = [ pkgs.nixd ];
|
||||||
|
|
||||||
userSettings = {
|
userSettings = {
|
||||||
theme = lib.mkDefault {
|
theme = {
|
||||||
mode = "system";
|
mode = "system";
|
||||||
dark = "Catppuccin Frappé (Blur)";
|
dark = "Catppuccin Frappé (Blur)";
|
||||||
light = "Rosé Pine Dawn";
|
light = "Rosé Pine Dawn";
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user