Compare commits

..

No commits in common. "f845588d00be1bff0858d98fbc078574c14bd40a" and "02251bd75064d4d58b6f852267e221cbae28d3fd" have entirely different histories.

12 changed files with 28 additions and 52 deletions

8
flake.lock generated
View file

@ -17,8 +17,8 @@
]
},
"locked": {
"lastModified": 1770984845,
"narHash": "sha256-si6XCx0xGq3z7dZSVCx5NgVxgFdnTc1qaKro5IemG70=",
"lastModified": 1770974095,
"narHash": "sha256-7plCbyNGVinY0Ti+MIR8tU+BJDe1qvyXCKq1TDk9tc8=",
"path": "/home/me/cry/mk/Cerulean",
"type": "path"
},
@ -354,8 +354,8 @@
"systems": "systems_2"
},
"locked": {
"lastModified": 1770975061,
"narHash": "sha256-dedEcQSEzur2/pBcxFFygkSrMuKGOUWThOUD2LXMCsA=",
"lastModified": 1770954326,
"narHash": "sha256-PZ+78r+iFZ90l6fdwC73SSyNyCqaiZIAFeDg0qBHY+8=",
"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,6 +1,5 @@
{
pkgs,
upkgs,
config,
...
}: {

View file

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

View file

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

View file

@ -1,8 +1,12 @@
{
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 = pkgs.ty; # DEBUG: upkgs.ty;
pkg = 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,8 +1,7 @@
# DEBUG: {upkgs, ...}: {
{pkgs, ...}: {
{upkgs, ...}: {
programs.foot = {
enable = true;
package = pkgs.foot; # DEBUG: upkgs.foot;
package = 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;
package = pkgs.hyprland; # upkgs.hyprland;
xwayland.enable = true;

View file

@ -1,39 +1,23 @@
{
lib,
root,
inputs,
system,
...
}: {
nixpkgs.channels.default = {
# nixpkgs (stable branch)
pkgs = {
inherit system;
source = inputs.nixpkgs;
overlays =
[inputs.dobutterfliescry-net.overlays.default]
++ import ./overlays/default.nix;
++ import (root + "/overlays");
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,10 +13,6 @@ cerulean.mkNexus ./. (self: {
server = {};
};
extraModules = with inputs; [
home-manager.nixosModules.default
];
nodes = let
inherit
(self.nexus)
@ -28,6 +24,7 @@ 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
];
@ -38,6 +35,7 @@ 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
];