This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, lib, pkgs, ... }: | |
let | |
user = "tombert"; | |
hostname = "puter"; | |
in { | |
system.stateVersion = "24.05"; | |
time = { timeZone = "America/New_York"; }; | |
boot = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, lib, pkgs, ... }: | |
let | |
user = "tombert"; | |
hostname = "puter"; | |
in { | |
system.stateVersion = "24.05"; | |
time = { timeZone = "America/New_York"; }; | |
boot = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set $mod Mod4 | |
input "type:touchpad" { | |
click_method clickfinger | |
} | |
input * { | |
xkb_options "lv3:ralt_alt,caps:escape" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, lib, pkgs, ... }: | |
{ | |
imports = [ # Include the results of the hardware scan. | |
./hardware-configuration.nix | |
]; | |
services.acpid.enable = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.example; | |
import java.util.ArrayList; | |
import java.util.Random; | |
public class Main { | |
public static ArrayList<Integer> createArray(Integer size) { | |
var r = new Random(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
description = "Launch Sonic Robo Blast 2"; | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
}; | |
outputs = { self, nixpkgs, ... }: let | |
pkgs = import nixpkgs { system = "x86_64-linux"; }; | |
srb2 = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
description = "Launch Blade of Agony"; | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/867fe984b5299cf855be38ed9feed70a95a22eaf"; | |
}; | |
outputs = { self, nixpkgs, ... }: let | |
pkgs = import nixpkgs { system = "x86_64-linux"; }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit this configuration file to define what should be installed on | |
# your system. Help is available in the configuration.nix(5) man page, on | |
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`). | |
{ config, lib, pkgs, ... }: | |
{ | |
imports = | |
[ # Include the results of the hardware scan. | |
./hardware-configuration.nix |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
May 14 00:40:03 chimeraos systemd[731]: Queued start job for default target Main User Target. | |
May 14 00:40:03 chimeraos systemd[731]: Created slice User Application Slice. | |
May 14 00:40:03 chimeraos systemd[731]: Created slice User Core Session Slice. | |
May 14 00:40:03 chimeraos systemd[731]: Reached target Paths. | |
May 14 00:40:03 chimeraos systemd[731]: Reached target Timers. | |
May 14 00:40:03 chimeraos systemd[731]: Starting D-Bus User Message Bus Socket... | |
May 14 00:40:03 chimeraos systemd[731]: Listening on GnuPG network certificate management daemon. | |
May 14 00:40:03 chimeraos systemd[731]: Listening on GCR ssh-agent wrapper. | |
May 14 00:40:03 chimeraos systemd[731]: Listening on GNOME Keyring daemon. | |
May 14 00:40:03 chimeraos systemd[731]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open System | |
open Microsoft.Xna.Framework | |
open Microsoft.Xna.Framework.Input | |
open Microsoft.Xna.Framework.Graphics | |
type FNAGame() as self = |
NewerOlder