Home Gen487 @ 2025-03-22-20:32

This commit is contained in:
Jonas Röger 2025-04-03 01:25:04 +02:00
parent 5cb2927045
commit 6c9e26377c
6 changed files with 139 additions and 42 deletions

View File

@ -56,6 +56,16 @@
./hosts/comfy-station/configuration.nix
];
};
"jroeger.de" = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs;
};
modules = [
({...}: {nixpkgs.overlays = [overlay-unstable];})
./hosts/jroeger.de/configuration.nix
];
};
vm = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
@ -66,7 +76,7 @@
];
};
};
homeConfigurations."jonas" = home-manager.lib.homeManagerConfiguration {
homeConfigurations."jonas@comfy-station" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.${system};
# Specify your home configuration modules here, for example,
@ -76,7 +86,22 @@
({...}: {nixpkgs.config.allowUnfree = true;})
inputs.plasma-manager.homeManagerModules.plasma-manager
inputs.sops-nix.homeManagerModules.sops
./home/jonas.nix
(./home + "/jonas@comfy-station.nix")
];
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
extraSpecialArgs = {inherit inputs;};
};
homeConfigurations."jonas@jroeger.de" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.${system};
# Specify your home configuration modules here, for example,
# the path to your home.nix.
modules = [
({...}: {nixpkgs.overlays = [overlay-unstable];})
({...}: {nixpkgs.config.allowUnfree = true;})
(./home + "/jonas@jroeger.de.nix")
];
# Optionally use extraSpecialArgs

39
home/jonas@jroeger.de.nix Normal file
View File

@ -0,0 +1,39 @@
{...}: {
imports = [
../modules/home/ranger
../modules/home/zsh
];
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "jonas";
home.homeDirectory = "/home/jonas";
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "24.11"; # Please read the comment before changing.
home.sessionVariables = {
EDITOR = "vim";
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# Git
programs.git = {
enable = true;
userName = "Jonas Röger";
userEmail = "jonas.roeger@tu-dortmund.de";
difftastic.enable = true;
signing = {
signByDefault = true;
key = "4000EB35E1AE0F07";
};
};
}

View File

@ -0,0 +1,73 @@
{pkgs, ...}: {
imports = [
# Include the results of the hardware scan.
# ./hardware-configuration.nix
];
# Configure nix and garbage collection
nix = {
settings = {
experimental-features = ["nix-command" "flakes"];
auto-optimise-store = true;
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
};
users.users.jonas = {
isNormalUser = true;
description = "Jonas";
extraGroups = ["wheel" "docker"];
openssh.authorizedKeys.keys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCyCyYsMSiy7shcehlzJEbCyRiHk+cicFB35Bc2uc4PjjkCjswLh01fRAV2QcplrNkH/5F4GBTbOoZHHc7/AVLyUxgwDC9ffD2i7fevuGpfBFy9D30uz6jDekxXkmRmIlidXLdG1Fh4zwVejGlwdhUu/Zb7PonO/dktx3EFdf1SpnW+y75anN85zoGsld7KQk42wEd0zXtCgx4CKI6Vvt6heWCEiJ9wyw1sLpTJr4H8In236CUj1/r1qY9Gfa8n9NA0J9XCpcwSCEWGRKQNicoQIpnp5txrgzaUq4r6qBKHmImYXmSTVnDZ9dJLRYNu2lDvBtTXP4ztlR6Lpxs873fPg51qgaX9rRVMMo/gGjq8fOFWsDVaJZab9VY3hZYNCKIbWFqo4GKyCQs9Xfzr2AUACm09HWiYMTefwEypOzvUb4z+LF2B/0c5XmghLF/TOzLVgDXzAgWMH4mCnPh9EDLHTtoJaGNURler9VRV8yQyLH6oK9UpHZovCFs7HpFN+WPv2QVFfkK8aHg7tnklFsT78z154bjuspiEI/fFGmTxoQUGufmHlRy/9GQDusgNfe24ZEB2hHBVjKv29XdIfvFAhoPVpA6+O/N3feSlmVISaU+8QraVQEf/TuQjopDUWpJTmqSxKvQSTPwcyWDy6NtcJ85bGAu6jSUGC3ouH4Rb2Q== cardno:000609618602"
];
};
users.defaultUserShell = pkgs.zsh;
programs.zsh.enable = true;
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
settings.KbdInteractiveAuthentication = false;
};
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.11"; # Did you read the comment?
# Set your time zone.
time.timeZone = "Europe/Berlin";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_DE.UTF-8";
LC_IDENTIFICATION = "de_DE.UTF-8";
LC_MEASUREMENT = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8";
LC_NUMERIC = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
console.keyMap = "de";
networking.fqdn = "jroeger.de";
# Enable networking
networking.networkmanager.enable = true;
networking.firewall.enable = false;
}

View File

@ -1,35 +0,0 @@
{
pkgs ? import <nixpkgs> {},
version ? "1.5.2",
hash ? "sha256-Yy9x7cSQrRpk+Flt9+H7gdogUS4WR2q2fqdVXQgvd7Y=",
jre ? pkgs.jre,
...
}: let
drv = pkgs.stdenv.mkDerivation {
pname = "antlrworks";
inherit version;
dontUnpack = true;
src = pkgs.fetchurl {
url = "https://github.com/antlr/website-antlr3/raw/refs/heads/gh-pages/download/antlrworks-${version}-complete.jar";
inherit hash;
};
installPhase = ''
mkdir -p $out/share/java
cp $src $out/share/java/antlrworks-${version}-complete.jar
mkdir $out/bin
cat > $out/bin/antlrworks <<EOF
#!/usr/bin/env sh
${jre}/bin/java -jar $out/share/java/antlrworks-${version}-complete.jar
EOF
chmod +x $out/bin/antlrworks
'';
};
in
pkgs.makeDesktopItem {
name = "antlrworks";
desktopName = "ANTLRWorks";
exec = "${drv}/bin/antlrworks %f";
terminal = false;
}

View File

@ -1,8 +1,4 @@
{pkgs, ...}: let
antlrworks =
import
./derivations/antlrworks.nix
{inherit pkgs;};
RStudio-with-my-packages =
pkgs.rstudioWrapper.override
{
@ -21,7 +17,6 @@
in {
environment.systemPackages = [
RStudio-with-my-packages
antlrworks
pkgs.age
pkgs.alejandra
pkgs.arduino