1
0
Fork 0
forked from foxora/nix

format with prettier formatter :3

This commit is contained in:
foxora 2026-03-03 04:26:35 +00:00
parent 8b1a6aca39
commit 211fa03252
18 changed files with 480 additions and 500 deletions

View file

@ -8,8 +8,7 @@
root, root,
system, system,
... ...
}: }: {
{
imports = [ imports = [
inputs.zen.homeModules.twilight inputs.zen.homeModules.twilight
@ -77,8 +76,7 @@
fonts.fontconfig.enable = true; fonts.fontconfig.enable = true;
home.file.".mozilla/native-messaging-hosts/tridactyl.json".source = home.file.".mozilla/native-messaging-hosts/tridactyl.json".source = "${upkgs.tridactyl-native}/lib/mozilla/native-messaging-hosts/tridactyl.json";
"${upkgs.tridactyl-native}/lib/mozilla/native-messaging-hosts/tridactyl.json";
# some packages are enabled from their own module in ./modules # some packages are enabled from their own module in ./modules
home.packages = with upkgs; [ home.packages = with upkgs; [

View file

@ -1,5 +1,4 @@
{ upkgs, ... }: {upkgs, ...}: {
{
programs.alacritty = { programs.alacritty = {
enable = true; enable = true;
package = upkgs.alacritty-graphics; package = upkgs.alacritty-graphics;

View file

@ -4,13 +4,12 @@
inputs, inputs,
mpkgs, mpkgs,
... ...
}: }: let
let inherit
inherit (inputs.nixcats) (inputs.nixcats)
utils utils
; ;
in in {
{
imports = [ imports = [
inputs.nixcats.homeModule inputs.nixcats.homeModule
]; ];
@ -38,8 +37,7 @@ in
# the .replace vs .merge options are for modules based on existing configurations, # the .replace vs .merge options are for modules based on existing configurations,
# they refer to how multiple categoryDefinitions get merged together by the module. # they refer to how multiple categoryDefinitions get merged together by the module.
# for useage of this section, refer to :h nixCats.flake.outputs.categories # for useage of this section, refer to :h nixCats.flake.outputs.categories
categoryDefinitions.replace = categoryDefinitions.replace = {
{
pkgs, pkgs,
settings, settings,
categories, categories,
@ -47,8 +45,7 @@ in
name, name,
mkNvimPlugin, mkNvimPlugin,
... ...
}@packageDef: } @ packageDef: {
{
lspsAndRuntimeDeps = with pkgs; { lspsAndRuntimeDeps = with pkgs; {
general = [ general = [
ripgrep ripgrep
@ -205,9 +202,7 @@ in
packageDefinitions.replace = { packageDefinitions.replace = {
# these are the names of your packages # these are the names of your packages
# you can include as many as you wish. # you can include as many as you wish.
auroranvim = auroranvim = {pkgs, ...}: {
{ pkgs, ... }:
{
# they contain a settings set defined above # they contain a settings set defined above
# see :help nixCats.flake.outputs.settings # see :help nixCats.flake.outputs.settings
settings = { settings = {

View file

@ -1,5 +1,4 @@
{ inputs, ... }: {inputs, ...}: {
{
imports = [ imports = [
inputs.nixcord.homeModules.nixcord inputs.nixcord.homeModules.nixcord
]; ];

View file

@ -1,5 +1,4 @@
{ upkgs, ... }: {upkgs, ...}: {
{
# optional dependencies can be found here: # optional dependencies can be found here:
# https://yazi-rs.github.io/docs/installation/ # https://yazi-rs.github.io/docs/installation/
home.packages = with upkgs; [ home.packages = with upkgs; [

View file

@ -1,5 +1,4 @@
{ upkgs, ... }: {upkgs, ...}: {
{
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;

View file

@ -1,5 +1,4 @@
{ inputs, ... }: {inputs, ...}: {
{
imports = [ imports = [
inputs.mango.hmModules.mango inputs.mango.hmModules.mango
]; ];

View file

@ -1,22 +1,17 @@
{ ... }: {...}: {
{ wayland.windowManager.river = let
wayland.windowManager.river =
let
layout = "rivertile"; layout = "rivertile";
in in {
{
enable = true; enable = true;
xwayland.enable = true; xwayland.enable = true;
settings = settings = let
let
main = "Super"; main = "Super";
# applications # applications
terminal = "alacritty"; terminal = "alacritty";
browser = "firefox"; browser = "firefox";
in in {
{
default-layout = "${layout}"; default-layout = "${layout}";
output-layout = "${layout}"; output-layout = "${layout}";
border-width = 1; border-width = 1;

View file

@ -1,5 +1,4 @@
{ config, ... }: {config, ...}: {
{
wayland.windowManager.sway = { wayland.windowManager.sway = {
enable = true; enable = true;
config = rec { config = rec {
@ -18,13 +17,11 @@
{command = "waybar";} {command = "waybar";}
]; ];
keybindings = keybindings = let
let
main = config.wayland.windowManager.sway.config.modifier; main = config.wayland.windowManager.sway.config.modifier;
terminal = config.wayland.windowManager.sway.config.terminal; terminal = config.wayland.windowManager.sway.config.terminal;
browser = "firefox"; browser = "firefox";
in in {
{
"${main}+c" = "kill"; # close focused window "${main}+c" = "kill"; # close focused window
"${main}+Alt+Delete" = "exit"; # exit sway "${main}+Alt+Delete" = "exit"; # exit sway

View file

@ -1,5 +1,4 @@
{ config, lib, pkgs, ... }: {pkgs, ...}: {
{
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
]; ];

View file

@ -1,11 +1,14 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ {
imports = config,
[ (modulesPath + "/installer/scan/not-detected.nix") lib,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = ["ahci" "ehci_pci" "megaraid_sas" "usb_storage" "usbhid" "sd_mod" "sr_mod"]; boot.initrd.availableKernelModules = ["ahci" "ehci_pci" "megaraid_sas" "usb_storage" "usbhid" "sd_mod" "sr_mod"];
@ -13,19 +16,19 @@
boot.kernelModules = ["kvm-intel"]; boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = []; boot.extraModulePackages = [];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/7f22e35f-7536-49c4-9c04-88874e87f266"; device = "/dev/disk/by-uuid/7f22e35f-7536-49c4-9c04-88874e87f266";
fsType = "btrfs"; fsType = "btrfs";
}; };
fileSystems."/boot" = fileSystems."/boot" = {
{ device = "/dev/disk/by-uuid/0213-F9A0"; device = "/dev/disk/by-uuid/0213-F9A0";
fsType = "vfat"; fsType = "vfat";
options = ["fmask=0077" "dmask=0077"]; options = ["fmask=0077" "dmask=0077"];
}; };
swapDevices = swapDevices = [
[ { device = "/dev/disk/by-uuid/0d04172b-aed8-42ea-9cb8-e5dcbf960200"; } {device = "/dev/disk/by-uuid/0d04172b-aed8-42ea-9cb8-e5dcbf960200";}
]; ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";

View file

@ -1,5 +1,4 @@
{ config, lib, pkgs, ... }: {pkgs, ...}: {
{
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
@ -91,4 +90,3 @@
system.stateVersion = "25.11"; system.stateVersion = "25.11";
} }

View file

@ -1,11 +1,14 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ {
imports = config,
[ (modulesPath + "/installer/scan/not-detected.nix") lib,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = ["ahci" "xhci_pci" "megaraid_sas" "usb_storage" "usbhid" "sd_mod"]; boot.initrd.availableKernelModules = ["ahci" "xhci_pci" "megaraid_sas" "usb_storage" "usbhid" "sd_mod"];
@ -13,19 +16,19 @@
boot.kernelModules = ["kvm-intel"]; boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = []; boot.extraModulePackages = [];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/1bc53888-6db8-46df-aa28-975b710c5de8"; device = "/dev/disk/by-uuid/1bc53888-6db8-46df-aa28-975b710c5de8";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" = {
{ device = "/dev/disk/by-uuid/12CE-A600"; device = "/dev/disk/by-uuid/12CE-A600";
fsType = "vfat"; fsType = "vfat";
options = ["fmask=0077" "dmask=0077"]; options = ["fmask=0077" "dmask=0077"];
}; };
swapDevices = swapDevices = [
[ { device = "/dev/disk/by-uuid/60643004-6916-46b3-8655-66fdc28cf5ad"; } {device = "/dev/disk/by-uuid/60643004-6916-46b3-8655-66fdc28cf5ad";}
]; ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";

View file

@ -3,8 +3,7 @@
root, root,
upkgs, upkgs,
... ...
}: }: {
{
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
@ -214,8 +213,7 @@
}; };
}; };
systemd.tmpfiles.rules = systemd.tmpfiles.rules = let
let
imagePath = root + "/homes/aurora/profile.png"; imagePath = root + "/homes/aurora/profile.png";
in in
lib.mkIf (builtins.pathExists imagePath) [ lib.mkIf (builtins.pathExists imagePath) [

View file

@ -12,13 +12,12 @@ cerulean.mkNexus ./. (self: {
servers = {}; servers = {};
}; };
nodes = nodes = let
let inherit
inherit (self.nexus) (self.nexus)
groups groups
; ;
in in {
{
nixarawrui = { nixarawrui = {
system = "x86_64-linux"; system = "x86_64-linux";

View file

@ -1,5 +1,4 @@
{ config, lib, pkgs, ... }: {pkgs, ...}: {
{
services.home-assistant = { services.home-assistant = {
enable = true; enable = true;
configDir = "/var/lib/hass/hass"; configDir = "/var/lib/hass/hass";
@ -21,7 +20,8 @@
"mobile_app" "mobile_app"
]; ];
extraPackages = python3Packages: with python3Packages; [ extraPackages = python3Packages:
with python3Packages; [
getmac getmac
aiohue aiohue
numpy numpy