push
This commit is contained in:
@@ -2,4 +2,4 @@
|
||||
# Do not delete.
|
||||
|
||||
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";
|
||||
|
||||
nix-cachyos-kernel.url = "github:xddxdd/nix-cachyos-kernel/release";
|
||||
|
||||
omnisearch = {
|
||||
url = "git+https://git.bwaaa.monster/omnisearch";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -22,11 +22,13 @@
|
||||
janitor
|
||||
];
|
||||
|
||||
nixos = {
|
||||
nixos = { pkgs, ...}: {
|
||||
networking.hostName = "box";
|
||||
|
||||
# den.tunnels = [ "tvtun" ];
|
||||
|
||||
environment.systemPackages = [ pkgs.python3 ];
|
||||
|
||||
users.users.levi = {
|
||||
isNormalUser = true;
|
||||
description = "levi";
|
||||
|
||||
@@ -10,6 +10,8 @@
|
||||
janitor
|
||||
|
||||
ollama
|
||||
|
||||
alc897
|
||||
];
|
||||
|
||||
nixos = {
|
||||
|
||||
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.aspects.utilities = {
|
||||
includes = with den.aspects; [ system-utils desktop-utils fonts ];
|
||||
includes = with den.aspects; [ system-utils desktop-utils fonts sshuttle ];
|
||||
};
|
||||
}
|
||||
@@ -1,16 +1,16 @@
|
||||
# nix run .#vm
|
||||
|
||||
{ inputs, den, ... }: {
|
||||
den.aspects.nix.includes = [ (den.provides.tty-autologin "bug") ];
|
||||
den.aspects.nix.includes = [ (den.provides.tty-autologin "bug") ];
|
||||
|
||||
perSystem = { pkgs, ... }: {
|
||||
packages.vm = pkgs.writeShellApplication {
|
||||
name = "vm";
|
||||
text = let
|
||||
host = inputs.self.nixosConfigurations.nix.config;
|
||||
in ''
|
||||
${host.system.build.vm}/bin/run-${host.networking.hostName}-vm "$@"
|
||||
'';
|
||||
};
|
||||
perSystem = { pkgs, ... }: {
|
||||
packages.vm = pkgs.writeShellApplication {
|
||||
name = "vm";
|
||||
text = let
|
||||
host = inputs.self.nixosConfigurations.nix.config;
|
||||
in ''
|
||||
${host.system.build.vm}/bin/run-${host.networking.hostName}-vm "$@"
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user