run nixfmt

This commit is contained in:
insects 2024-08-21 15:15:04 +02:00
parent 477bce6897
commit 9415d40508
41 changed files with 384 additions and 262 deletions

View file

@ -20,10 +20,11 @@
}; };
outputs = outputs =
{ self {
, nixpkgs self,
, home-manager nixpkgs,
, ... home-manager,
...
}@inputs: }@inputs:
let let
inherit (self) outputs; inherit (self) outputs;
@ -33,10 +34,13 @@
"aarch64-darwin" "aarch64-darwin"
]; ];
forEachSystem = f: lib.genAttrs systems (system: f pkgsFor.${system}); forEachSystem = f: lib.genAttrs systems (system: f pkgsFor.${system});
pkgsFor = lib.genAttrs systems (system: import nixpkgs { pkgsFor = lib.genAttrs systems (
system:
import nixpkgs {
inherit system; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
}); }
);
in in
{ {
inherit lib; inherit lib;
@ -50,24 +54,32 @@
nixosConfigurations = { nixosConfigurations = {
enoko = lib.nixosSystem { enoko = lib.nixosSystem {
specialArgs = { inherit inputs outputs; }; specialArgs = {
inherit inputs outputs;
};
modules = [ modules = [
./nixos/enoko/configuration.nix ./nixos/enoko/configuration.nix
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
home-manager.extraSpecialArgs = { inherit inputs outputs; }; home-manager.extraSpecialArgs = {
inherit inputs outputs;
};
home-manager.users.lu = import ./home/enoko.nix; home-manager.users.lu = import ./home/enoko.nix;
} }
]; ];
}; };
yukari = lib.nixosSystem { yukari = lib.nixosSystem {
specialArgs = { inherit inputs outputs; }; specialArgs = {
inherit inputs outputs;
};
modules = [ modules = [
./nixos/yukari/configuration.nix ./nixos/yukari/configuration.nix
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
home-manager.extraSpecialArgs = { inherit inputs outputs; }; home-manager.extraSpecialArgs = {
inherit inputs outputs;
};
home-manager.users.lu = import ./home/yukari.nix; home-manager.users.lu = import ./home/yukari.nix;
} }
]; ];

View file

@ -1,5 +1,6 @@
# Configures programs that primarily run via the command line # Configures programs that primarily run via the command line
{ pkgs, ... }: { { pkgs, ... }:
{
imports = [ imports = [
./fish.nix # fish shell configuration ./fish.nix # fish shell configuration
./neovim.nix # neovim configuration, my "escape" editor ./neovim.nix # neovim configuration, my "escape" editor

View file

@ -1,4 +1,5 @@
{ ... }: { { ... }:
{
programs.direnv = { programs.direnv = {
enable = true; enable = true;
nix-direnv.enable = true; nix-direnv.enable = true;

View file

@ -116,8 +116,7 @@
} }
{ {
name = "plugin-foreign-env"; name = "plugin-foreign-env";
src = pkgs.fetchFromGitHub src = pkgs.fetchFromGitHub {
{
owner = "oh-my-fish"; owner = "oh-my-fish";
repo = "plugin-foreign-env"; repo = "plugin-foreign-env";
rev = "7f0cf099ae1e1e4ab38f46350ed6757d54471de7"; rev = "7f0cf099ae1e1e4ab38f46350ed6757d54471de7";

View file

@ -1,3 +1,4 @@
{ ... }: { { ... }:
{
programs.lazygit.enable = true; programs.lazygit.enable = true;
} }

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
home.packages = with pkgs; [ home.packages = with pkgs; [
_1password-gui _1password-gui
]; ];

View file

@ -1,4 +1,5 @@
{ config, lib, ... }: { { config, lib, ... }:
{
programs.alacritty = { programs.alacritty = {
enable = true; enable = true;
settings = { settings = {

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
imports = [ imports = [
./font.nix ./font.nix
./firefox.nix ./firefox.nix

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
home.packages = with pkgs; [ home.packages = with pkgs; [
fira fira
]; ];

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
fontProfiles = { fontProfiles = {
enable = true; enable = true;
monospace = { monospace = {

View file

@ -1,4 +1,5 @@
{ ... }: { { ... }:
{
gtk = { gtk = {
enable = true; enable = true;
}; };

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
home.packages = with pkgs; [ home.packages = with pkgs; [
vscode vscode
]; ];

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
imports = [ imports = [
./mako.nix ./mako.nix
./wofi.nix ./wofi.nix

View file

@ -1,4 +1,5 @@
{ config, lib, ... }: { { config, lib, ... }:
{
services.mako = { services.mako = {
enable = true; enable = true;
font = lib.mkForce "${config.fontProfiles.regular.family} 12"; font = lib.mkForce "${config.fontProfiles.regular.family} 12";

View file

@ -1,4 +1,5 @@
{ config, pkgs, ... }: { { config, pkgs, ... }:
{
# additional deps for cava support # additional deps for cava support
home.packages = with pkgs; [ home.packages = with pkgs; [
iniparser iniparser
@ -73,9 +74,11 @@
}; };
}; };
style = let style =
let
inherit (config.lib.stylix.colors) withHashtag; inherit (config.lib.stylix.colors) withHashtag;
in '' in
''
* { * {
font-family: ${config.fontProfiles.bitmap.family}, ${config.fontProfiles.monospace.family}; font-family: ${config.fontProfiles.bitmap.family}, ${config.fontProfiles.monospace.family};
font-size: 11pt; font-size: 11pt;

View file

@ -1,4 +1,5 @@
{ config, lib, ... }: { { config, lib, ... }:
{
programs.wofi = { programs.wofi = {
enable = true; enable = true;
settings = { settings = {

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
imports = [ imports = [
./mise.nix ./mise.nix
./php.nix ./php.nix

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
home.packages = with pkgs; [ home.packages = with pkgs; [
python3 # needed for installing node.js python3 # needed for installing node.js
]; ];

View file

@ -1,6 +1,7 @@
# install php from nixpkgs because mise wants to compile it from source, # install php from nixpkgs because mise wants to compile it from source,
# and that's a whole can of beans i'm not getting into # and that's a whole can of beans i'm not getting into
{ pkgs, ... }: { { pkgs, ... }:
{
home.packages = with pkgs; [ home.packages = with pkgs; [
php83 php83
]; ];

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
home.packages = with pkgs; [ home.packages = with pkgs; [
xivlauncher xivlauncher
]; ];

View file

@ -1,4 +1,9 @@
{ lib, config, pkgs, ... }: {
lib,
config,
pkgs,
...
}:
{ {
imports = [ imports = [
../../common/desktop ../../common/desktop
@ -100,7 +105,8 @@
"SUPER,mouse:273,resizewindow" "SUPER,mouse:273,resizewindow"
]; ];
bind = let bind =
let
terminal = "${pkgs.alacritty}/bin/alacritty"; terminal = "${pkgs.alacritty}/bin/alacritty";
grimblast = lib.getExe pkgs.grimblast; grimblast = lib.getExe pkgs.grimblast;
workspaces = [ workspaces = [
@ -120,7 +126,8 @@
k = up; k = up;
j = down; j = down;
}; };
in [ in
[
"SUPER,Return,exec,${terminal}" "SUPER,Return,exec,${terminal}"
"SUPERSHIFT,q,killactive" # exit program "SUPERSHIFT,q,killactive" # exit program
"SUPERSHIFT,e,exit" # exit hyprland "SUPERSHIFT,e,exit" # exit hyprland
@ -170,13 +177,17 @@
(lib.mapAttrsToList (key: direction: "SUPERSHIFT,${key},swapwindow,${direction}") directions) (lib.mapAttrsToList (key: direction: "SUPERSHIFT,${key},swapwindow,${direction}") directions)
++ ++
# move windows # move windows
(lib.mapAttrsToList (key: direction: "SUPERCONTROL,${key},movewindoworgroup,${direction}") directions) (lib.mapAttrsToList (
key: direction: "SUPERCONTROL,${key},movewindoworgroup,${direction}"
) directions)
++ ++
# move monitor focus # move monitor focus
(lib.mapAttrsToList (key: direction: "SUPERALT,${key},focusmonitor,${direction}") directions) (lib.mapAttrsToList (key: direction: "SUPERALT,${key},focusmonitor,${direction}") directions)
++ ++
# move workspace to other monitor # move workspace to other monitor
(lib.mapAttrsToList (key: direction: "SUPERALTSHIFT,${key},movecurrentworkspacetomonitor,${direction}") directions) (lib.mapAttrsToList (
key: direction: "SUPERALTSHIFT,${key},movecurrentworkspacetomonitor,${direction}"
) directions)
++ ++
# launcher # launcher
( (
@ -190,10 +201,12 @@
); );
monitor = map ( monitor = map (
m: "${m.name},${ m:
if m.enabled "${m.name},${
then "${toString m.width}x${toString m.height}@${toString m.refreshRate},${m.position},${m.scale}" if m.enabled then
else "disable" "${toString m.width}x${toString m.height}@${toString m.refreshRate},${m.position},${m.scale}"
else
"disable"
}" }"
) config.monitors; ) config.monitors;

View file

@ -1,6 +1,8 @@
{ config, ... }: let { config, ... }:
let
swaylock = "${config.programs.swaylock.package}/bin/swaylock"; swaylock = "${config.programs.swaylock.package}/bin/swaylock";
in { in
{
services.swayidle = { services.swayidle = {
enable = true; enable = true;
systemdTarget = "graphical-session.target"; systemdTarget = "graphical-session.target";

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
programs.swaylock = { programs.swaylock = {
enable = true; enable = true;
package = pkgs.swaylock-effects; package = pkgs.swaylock-effects;

View file

@ -1,5 +1,6 @@
# enoko is my framework 13-inch AMD laptop, running nixos # enoko is my framework 13-inch AMD laptop, running nixos
{ ... }: { { ... }:
{
imports = [ imports = [
./global.nix ./global.nix
./common/desktop ./common/desktop

View file

@ -1,4 +1,12 @@
{ inputs, lib, pkgs, config, outputs, ... }: { {
inputs,
lib,
pkgs,
config,
outputs,
...
}:
{
imports = [ imports = [
inputs.nix-index-database.hmModules.nix-index inputs.nix-index-database.hmModules.nix-index
inputs.stylix.homeManagerModules.stylix inputs.stylix.homeManagerModules.stylix
@ -17,7 +25,10 @@
nix = { nix = {
package = lib.mkDefault pkgs.nixVersions.nix_2_22; package = lib.mkDefault pkgs.nixVersions.nix_2_22;
settings = { settings = {
experimental-features = ["nix-command" "flakes"]; experimental-features = [
"nix-command"
"flakes"
];
warn-dirty = false; warn-dirty = false;
}; };
}; };

View file

@ -1,5 +1,6 @@
# yukari my main desktop workstation, running nixos # yukari my main desktop workstation, running nixos
{ ... }: { { ... }:
{
imports = [ imports = [
./global.nix ./global.nix
./desktop/hyprland ./desktop/hyprland

View file

@ -2,7 +2,8 @@
lib, lib,
config, config,
... ...
}: let }:
let
mkFontOption = kind: { mkFontOption = kind: {
family = lib.mkOption { family = lib.mkOption {
type = lib.types.str; type = lib.types.str;
@ -18,7 +19,8 @@
}; };
}; };
cfg = config.fontProfiles; cfg = config.fontProfiles;
in { in
{
options.fontProfiles = { options.fontProfiles = {
enable = lib.mkEnableOption "Whether to enable font profiles"; enable = lib.mkEnableOption "Whether to enable font profiles";
monospace = mkFontOption "monospace"; monospace = mkFontOption "monospace";

View file

@ -2,9 +2,11 @@
lib, lib,
config, config,
... ...
}: let }:
let
inherit (lib) mkOption types; inherit (lib) mkOption types;
in { in
{
options.monitors = mkOption { options.monitors = mkOption {
type = types.listOf ( type = types.listOf (
types.submodule { types.submodule {

View file

@ -1,4 +1,5 @@
{ pkgs, ... }: { { pkgs, ... }:
{
security.rtkit.enable = true; security.rtkit.enable = true;
services.pipewire = { services.pipewire = {
enable = true; enable = true;

View file

@ -1,4 +1,5 @@
{ ... }: { { ... }:
{
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;
}; };

View file

@ -1,4 +1,5 @@
{ lib, pkgs, ... }: { { lib, pkgs, ... }:
{
imports = [ imports = [
./audio.nix ./audio.nix
./tailscale.nix ./tailscale.nix

View file

@ -1,4 +1,5 @@
{ ... }: { { ... }:
{
services.tailscale = { services.tailscale = {
enable = true; enable = true;
}; };

View file

@ -1,3 +1,4 @@
{ ... }: { { ... }:
{
security.pam.services.swaylock = { }; security.pam.services.swaylock = { };
} }

View file

@ -1,4 +1,5 @@
{ ... }: { { ... }:
{
services.displayManager.sddm.enable = true; services.displayManager.sddm.enable = true;
services.displayManager.sddm.wayland.enable = true; services.displayManager.sddm.wayland.enable = true;
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;

View file

@ -1,9 +1,11 @@
{ inputs {
, lib inputs,
, config lib,
, pkgs config,
, ... pkgs,
}: { ...
}:
{
imports = [ imports = [
../common ../common
./hardware-configuration.nix ./hardware-configuration.nix
@ -63,7 +65,10 @@
lu = { lu = {
shell = pkgs.fish; shell = pkgs.fish;
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" "storage" ]; extraGroups = [
"wheel"
"storage"
];
}; };
}; };
@ -90,7 +95,9 @@
# enable ppd specifically for the framework # enable ppd specifically for the framework
services.power-profiles-daemon.enable = true; services.power-profiles-daemon.enable = true;
boot.kernelParams = lib.optionals (lib.versionOlder config.boot.kernelPackages.kernel.version "6.8") ["rtc_cmos.use_acpi_alarm=1"] ; boot.kernelParams =
lib.optionals (lib.versionOlder config.boot.kernelPackages.kernel.version "6.8")
[ "rtc_cmos.use_acpi_alarm=1" ];
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "24.05"; system.stateVersion = "24.05";

View file

@ -1,27 +1,41 @@
# 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, modulesPath, ... }: {
config,
lib,
modulesPath,
...
}:
{ {
imports = imports = [
[ (modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [
"nvme"
"xhci_pci"
"thunderbolt"
"usb_storage"
"sd_mod"
];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/8e4fa7a2-0690-4276-b47d-0aa9fe3e62fd"; device = "/dev/disk/by-uuid/8e4fa7a2-0690-4276-b47d-0aa9fe3e62fd";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" = {
{ device = "/dev/disk/by-uuid/6157-ADC8"; device = "/dev/disk/by-uuid/6157-ADC8";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ]; options = [
"fmask=0022"
"dmask=0022"
];
}; };
swapDevices = [ ]; swapDevices = [ ];

View file

@ -1,9 +1,15 @@
{ ... }: { { ... }:
{
services.postgresql = { services.postgresql = {
enable = true; enable = true;
ensureUsers = [ ensureUsers = [
{ name = "lu"; ensureClauses = { superuser = true; }; } {
name = "lu";
ensureClauses = {
superuser = true;
};
}
]; ];
}; };
} }

View file

@ -1,9 +1,11 @@
{ inputs {
, lib inputs,
, config lib,
, pkgs config,
, ... pkgs,
}: { ...
}:
{
imports = [ imports = [
../common ../common
./hardware-configuration.nix ./hardware-configuration.nix
@ -63,7 +65,10 @@
lu = { lu = {
shell = pkgs.fish; shell = pkgs.fish;
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" "storage" ]; extraGroups = [
"wheel"
"storage"
];
}; };
}; };

View file

@ -1,31 +1,47 @@
# 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, ... }: {
config,
lib,
pkgs,
modulesPath,
...
}:
{ {
imports = imports = [
[ (modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.availableKernelModules = [
"xhci_pci"
"ahci"
"nvme"
"usb_storage"
"usbhid"
"sd_mod"
];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/d8551435-6a35-4ae9-b977-fd5a261c9be7"; device = "/dev/disk/by-uuid/d8551435-6a35-4ae9-b977-fd5a261c9be7";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" = {
{ device = "/dev/disk/by-uuid/5704-1642"; device = "/dev/disk/by-uuid/5704-1642";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ]; options = [
"fmask=0077"
"dmask=0077"
];
}; };
swapDevices = swapDevices = [
[ { device = "/dev/disk/by-uuid/d52209e9-f625-46a9-800a-88598ed6fcd5"; } { device = "/dev/disk/by-uuid/d52209e9-f625-46a9-800a-88598ed6fcd5"; }
]; ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking

View file

@ -1,5 +1,6 @@
# This file defines overlays # This file defines overlays
{inputs, ...}: { { inputs, ... }:
{
# This one brings our custom packages from the 'pkgs' directory # This one brings our custom packages from the 'pkgs' directory
additions = final: _prev: import ../pkgs final.pkgs; additions = final: _prev: import ../pkgs final.pkgs;

View file

@ -1,14 +1,17 @@
# Shell for bootstrapping flake-enabled nix and other tooling # Shell for bootstrapping flake-enabled nix and other tooling
{ pkgs ? let {
pkgs ?
let
lock = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.nixpkgs.locked; lock = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.nixpkgs.locked;
nixpkgs = fetchTarball { nixpkgs = fetchTarball {
url = "https://github.com/nixos/nixpkgs/archive/${lock.rev}.tar.gz"; url = "https://github.com/nixos/nixpkgs/archive/${lock.rev}.tar.gz";
sha256 = lock.narHash; sha256 = lock.narHash;
}; };
in in
import nixpkgs { overlays = [ ]; } import nixpkgs { overlays = [ ]; },
, ... ...
}: { }:
{
default = pkgs.mkShell { default = pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes"; NIX_CONFIG = "extra-experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [