Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
interval: "daily"
File renamed without changes.
2 changes: 2 additions & 0 deletions .github/test.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: "Test"

on:
pull_request:
push:

jobs:
tests:
runs-on: ubuntu-latest
Expand Down
23 changes: 0 additions & 23 deletions configuration.nix

This file was deleted.

29 changes: 29 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
description = "Somatic Linux";

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
pkgs = import nixpkgs { system = "x86_64-linux"; };
};

system.build.toplevel = {
imports = [ ];

environment.systemPackages = with pkgs; [
go
rustc
cargo
zerotier
btop
htop
vim
git
screen
];

# YOU CAN CONFIGURE SSH HERE, BUT WE AREN'T THERE YET
# services.openssh.enable = true;
# users.users.root.openssh.authorizedKeys.keys = [ "your-ssh-public-key" ];
};
}