IM FUCKING SISYPHUS SAVE ME

This commit is contained in:
_cry64 2026-02-13 22:14:30 +10:00
parent 02251bd750
commit 099d1960ab
12 changed files with 52 additions and 28 deletions

8
flake.lock generated
View file

@ -17,8 +17,8 @@
]
},
"locked": {
"lastModified": 1770974095,
"narHash": "sha256-7plCbyNGVinY0Ti+MIR8tU+BJDe1qvyXCKq1TDk9tc8=",
"lastModified": 1770984385,
"narHash": "sha256-CwSXJ5b0f3etnFdh8SaLeW8DMxCdu/r00D9xUFvfJTw=",
"path": "/home/me/cry/mk/Cerulean",
"type": "path"
},
@ -354,8 +354,8 @@
"systems": "systems_2"
},
"locked": {
"lastModified": 1770954326,
"narHash": "sha256-PZ+78r+iFZ90l6fdwC73SSyNyCqaiZIAFeDg0qBHY+8=",
"lastModified": 1770975061,
"narHash": "sha256-dedEcQSEzur2/pBcxFFygkSrMuKGOUWThOUD2LXMCsA=",
"path": "/home/me/cry/mk/nt",
"type": "path"
},

View file

@ -12,12 +12,12 @@
inputs.nixpkgs.follows = "nixpkgs";
};
nt.url = "github:cry128/nt";
# nt.url = "/home/me/cry/mk/nt";
# nt.url = "github:cry128/nt";
nt.url = "/home/me/cry/mk/nt";
cerulean = {
url = "github:cry128/Cerulean";
# url = "/home/me/cry/mk/Cerulean";
# url = "github:cry128/Cerulean";
url = "/home/me/cry/mk/Cerulean";
inputs = {
systems.follows = "systems";
nixpkgs.follows = "nixpkgs";

View file

@ -1,5 +1,6 @@
{
pkgs,
upkgs,
config,
...
}: {

View file

@ -27,6 +27,6 @@
upkgs.olympus # celeste
discord
discordo
ekphos
upkgs.ekphos
];
}

View file

@ -19,7 +19,7 @@
hexyl
# ASM
nasm
x86-manpages
# x86-manpages # DEBUG
# C Family
gcc
clang
@ -110,4 +110,12 @@
openssl
libargon2
];
programs = {
gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-curses;
enableSSHSupport = true;
};
};
}

View file

@ -1,12 +1,8 @@
{
inputs,
outputs,
lib,
config,
pkgs,
upkgs,
...
} @ args: {
}: {
imports = [
../modules/fish.nix
../modules/btop.nix

View file

@ -1,6 +1,6 @@
{
pkgs,
upkgs,
# upkgs,
...
}: let
lsps = {
@ -43,7 +43,7 @@
};
ty = {
pkg = upkgs.ty;
pkg = pkgs.ty; # DEBUG: upkgs.ty;
cmd = "ty";
};

View file

@ -11,9 +11,9 @@
userEmail = "them@dobutterfliescry.net";
signing = {
key = "F68745A836CA0412";
format = "openpgp";
signByDefault = true;
# key = "F68745A836CA0412";
# format = "openpgp";
# signByDefault = true;
};
aliases = {

View file

@ -1,7 +1,8 @@
{upkgs, ...}: {
# DEBUG: {upkgs, ...}: {
{pkgs, ...}: {
programs.foot = {
enable = true;
package = upkgs.foot;
package = pkgs.foot; # DEBUG: upkgs.foot;
server.enable = true;

View file

@ -14,7 +14,7 @@
config = lib.mkIf config.hyprland.enable {
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.hyprland; # upkgs.hyprland;
package = pkgs.hyprland;
xwayland.enable = true;

View file

@ -1,23 +1,39 @@
{
root,
lib,
inputs,
system,
...
}: {
nixpkgs.channels.default = {
# nixpkgs (stable branch)
pkgs = {
inherit system;
source = inputs.nixpkgs;
overlays =
[inputs.dobutterfliescry-net.overlays.default]
++ import (root + "/overlays");
++ import ./overlays/default.nix;
config = {
allowUnfree = false;
# allowUnfree = false;
allowBroken = false;
allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"discord"
"steam"
"steamcmd"
"steam-unwrapped"
"obsidian"
"gitkraken"
];
};
};
# nixpkgs-unstable
upkgs = {
inherit system;
source = inputs.nixpkgs-unstable;
overlays =
[inputs.dobutterfliescry-net.overlays.default]
++ import ./overlays/default.nix;
config = {
allowUnfree = false;
allowBroken = false;

View file

@ -13,6 +13,10 @@ cerulean.mkNexus ./. (self: {
server = {};
};
extraModules = with inputs; [
home-manager.nixosModules.default
];
nodes = let
inherit
(self.nexus)
@ -24,7 +28,6 @@ cerulean.mkNexus ./. (self: {
system = "x86_64-linux";
groups = [groups.cryos.cryde];
extraModules = with inputs; [
home-manager.nixosModules.default
grub2-themes.nixosModules.default
nix-flatpak.nixosModules.nix-flatpak
];
@ -35,7 +38,6 @@ cerulean.mkNexus ./. (self: {
system = "x86_64-linux";
groups = [groups.cryos.cryde];
extraModules = with inputs; [
home-manager.nixosModules.default
grub2-themes.nixosModules.default
nix-flatpak.nixosModules.nix-flatpak
];