Compare commits
2 Commits
90a2a8cf4b
...
2ab5eff599
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2ab5eff599 | ||
|
|
650f0469bc |
@@ -2,4 +2,4 @@
|
|||||||
# Do not delete.
|
# Do not delete.
|
||||||
|
|
||||||
folderID: nix
|
folderID: nix
|
||||||
created: 2026-01-29T23:05:44-06:00
|
created: 2026-01-29T23:06:32-06:00
|
||||||
|
|||||||
@@ -52,5 +52,10 @@
|
|||||||
# hytale-launcher.url = "github:JPyke3/hytale-launcher-nix";
|
# hytale-launcher.url = "github:JPyke3/hytale-launcher-nix";
|
||||||
|
|
||||||
nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release";
|
nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release";
|
||||||
|
|
||||||
|
omnisearch = {
|
||||||
|
url = "git+https://git.bwaaa.monster/omnisearch";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
9
modules/core/audio/alc897.nix
Normal file
9
modules/core/audio/alc897.nix
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
den.aspects.alc897 = {
|
||||||
|
nixos = {
|
||||||
|
boot.extraModprobeConfig = ''
|
||||||
|
options snd-hda-intel model=alc897-fixup
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -22,11 +22,13 @@
|
|||||||
janitor
|
janitor
|
||||||
];
|
];
|
||||||
|
|
||||||
nixos = {
|
nixos = { pkgs, ...}: {
|
||||||
networking.hostName = "box";
|
networking.hostName = "box";
|
||||||
|
|
||||||
# den.tunnels = [ "tvtun" ];
|
# den.tunnels = [ "tvtun" ];
|
||||||
|
|
||||||
|
environment.systemPackages = [ pkgs.python3 ];
|
||||||
|
|
||||||
users.users.levi = {
|
users.users.levi = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "levi";
|
description = "levi";
|
||||||
|
|||||||
@@ -10,6 +10,8 @@
|
|||||||
janitor
|
janitor
|
||||||
|
|
||||||
ollama
|
ollama
|
||||||
|
|
||||||
|
alc897
|
||||||
];
|
];
|
||||||
|
|
||||||
nixos = {
|
nixos = {
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
users.users.bug.packages = with pkgs; [
|
users.users.bug.packages = with pkgs; [
|
||||||
euphonica
|
euphonica
|
||||||
rhythmbox
|
rhythmbox
|
||||||
|
dopamine
|
||||||
];
|
];
|
||||||
|
|
||||||
services.flatpak.packages = [
|
services.flatpak.packages = [
|
||||||
|
|||||||
10
modules/software/utilities/sshuttle.nix
Normal file
10
modules/software/utilities/sshuttle.nix
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{ ... }: {
|
||||||
|
den.aspects.sshuttle = {
|
||||||
|
nixos = { pkgs, ... }: {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
python
|
||||||
|
sshuttle
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
{ den, ... }: {
|
{ den, ... }: {
|
||||||
den.aspects.utilities = {
|
den.aspects.utilities = {
|
||||||
includes = with den.aspects; [ system-utils desktop-utils fonts ];
|
includes = with den.aspects; [ system-utils desktop-utils fonts sshuttle ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user