18 Commits

Author SHA1 Message Date
71dd48ff08 add devenv to blarog 2026-05-31 20:51:24 +02:00
Armel van Ravels
45fef55476 flake update 2026-05-27 10:19:38 +02:00
Armel van Ravels
65784f1228 Use unstablePkgs for vscode 2026-05-11 11:21:53 +02:00
5878b54ff3 flake update 2026-05-11 08:59:47 +02:00
8e552b7c4d arduino IDE on balrog 2026-05-03 20:58:40 +02:00
6dd46c0844 Add Arduino IDE 2026-05-03 13:24:47 +02:00
f8bec207a9 Use latest kernel at balrog 2026-05-02 15:29:58 +02:00
2b54d7907f Use latest kernel on Gandalf 2026-05-01 15:58:30 +02:00
Armel van Ravels
170cd1ece9 Use latest kernel on work machine 2026-05-01 11:14:40 +02:00
2ba7c69389 Update flake.lock 2026-05-01 08:58:38 +02:00
a705cac5de configure macbook pro screen 2026-04-28 20:51:43 +02:00
2f0c7750de Add mouse support to tmux 2026-04-28 09:55:18 +02:00
8afeda2e9a flake update 2026-04-28 09:24:13 +02:00
93431732c5 bluetooth manager for balrog 2026-04-25 15:59:35 +02:00
affe3c9b79 Add balrog to README 2026-04-25 12:33:45 +02:00
0a46b57485 Add balrog config 2026-04-25 12:27:27 +02:00
e8ec456ffd Merge branch 'feature/ollama-unstable' 2026-04-24 14:08:29 +02:00
f20066a0af ollama via unstable channel 2026-04-24 13:52:09 +02:00
14 changed files with 146 additions and 19 deletions

View File

@@ -10,6 +10,7 @@ Each system has its own dedicated configuration module.
| **gandalf** | Personal system configuration for `gandalf`. |
| **frodo** | Personal system configuration for `frodo`. |
| **legolas** | Personal system configuration for `legolas`. |
| **balrog** | Personal system configuration for `balrog`. |
| **work** | Work-oriented system configuration for `work`. |
@@ -18,7 +19,7 @@ Each system has its own dedicated configuration module.
To rebuild and switch to a specific system:
```bash
# Replace <system> with gandalf, frodo, legolas, or work
# Replace <system> with gandalf, frodo, legolas, balrog or work
sudo nixos-rebuild switch --flake .#<system>
```

24
flake.lock generated
View File

@@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1775425411,
"narHash": "sha256-KY6HsebJHEe5nHOWP7ur09mb0drGxYSzE3rQxy62rJo=",
"lastModified": 1779506708,
"narHash": "sha256-QOD/CNm196nCJRheux/URi4/HE66fthdOMqCJoPP1Y0=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "0d02ec1d0a05f88ef9e74b516842900c41f0f2fe",
"rev": "3ee51fbdac8c8bdfe1e7e1fcaba6520a563f394f",
"type": "github"
},
"original": {
@@ -23,11 +23,11 @@
},
"nix-flatpak": {
"locked": {
"lastModified": 1776625032,
"narHash": "sha256-edvwHiFhgOiwywt6/Iwe+sSn6ybhU3WZGnIoiGcKjfQ=",
"lastModified": 1777402031,
"narHash": "sha256-6gkfl9y3+ti0Z6dgby8/R4/DRT8sWU0I0TLCIxwWtjk=",
"owner": "gmodena",
"repo": "nix-flatpak",
"rev": "479e19f1decb390aa5b75cae13ddf87d763c74cc",
"rev": "22a3adbe7c5c8c8a10a635d32c9ef7fc01a6e4b8",
"type": "github"
},
"original": {
@@ -38,11 +38,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1776734388,
"narHash": "sha256-vl3dkhlE5gzsItuHoEMVe+DlonsK+0836LIRDnm6MXQ=",
"lastModified": 1779467186,
"narHash": "sha256-nOesoDCiXcUftqbRBMz9tt4blI5PvljMWbm3kuCA+0s=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "10e7ad5bbcb421fe07e3a4ad53a634b0cd57ffac",
"rev": "b77b3de8775677f84492abe84635f87b0e153f0f",
"type": "github"
},
"original": {
@@ -54,11 +54,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1776949667,
"narHash": "sha256-GMSVw35Q+294GlrTUKlx087E31z7KurReQ1YHSKp5iw=",
"lastModified": 1779694939,
"narHash": "sha256-Ly4j75O8ICaSQx3uxPnwk2x7PMF0XQvn5r0c3yBA7FI=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "01fbdeef22b76df85ea168fbfe1bfd9e63681b30",
"rev": "f9d8b65950353691ab56561e7c73d2e1063d810b",
"type": "github"
},
"original": {

View File

@@ -45,6 +45,18 @@ in
./systems/legolas
];
};
"balrog" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
pkgsUnstable = mkPkgsUnstable "x86_64-linux";
nixFlatpak = nix-flatpak;
};
modules = [
nix-flatpak.nixosModules.nix-flatpak
home-manager.nixosModules.home-manager
./systems/balrog
];
};
"work" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {

View File

@@ -0,0 +1,56 @@
# 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
../modules/home-manager.nix
../modules/common.nix
../modules/users.nix
../modules/locales.nix
../modules/services.nix
../modules/programs.nix
../modules/docker.nix
../modules/printing.nix
../modules/bambu-studio-flatpak.nix
../modules/arduino-ide.nix
../modules/devenv.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = false;
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi"; # ← use the same mount point here.
};
grub = {
efiSupport = true;
device = "nodev";
};
};
networking.hostName = "balrog";
networking.networkmanager.enable = true;
networking.nameservers = [ "192.168.68.56" "1.1.1.1" "8.8.8.8" ];
hardware.enableAllFirmware = true;
boot.initrd.kernelModules = [ "wl" ]; boot.kernelModules = [ "wl" "kvm-intel" ];
boot.extraModulePackages = with config.boot.kernelPackages; [
broadcom_sta
];
nixpkgs.config = {
allowInsecurePredicate = pkg: builtins.elem (lib.getName pkg) ["broadcom-sta"];
};
hardware.bluetooth.enable = true;
services.blueman.enable = true;
system.stateVersion = "25.11"; # Did you read the comment?
}

View File

@@ -0,0 +1,31 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/6795dc19-3130-4693-b04c-a2c56fbdbd55";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/A202-E19C";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}

View File

@@ -24,7 +24,10 @@
../modules/gimp.nix
../modules/openscad.nix
../modules/bambu-studio-flatpak.nix
../modules/arduino-ide.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;

View File

@@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
arduino-ide
];
}

View File

@@ -0,0 +1,10 @@
{ config, pkgsUnstable, ... } :
{
environment.systemPackages = with pkgsUnstable; [
devenv
];
nix.settings.trusted-users = [ "root" "avravels" ];
}

View File

@@ -1,5 +1,8 @@
{ pkgs, ... }:
{
programs.tmux.enable = true;
programs.tmux = {
enable = true;
mouse = true;
};
}

View File

@@ -1,10 +1,10 @@
{ pkgs, ... }:
{ pkgs, pkgsUnstable, ... }:
{
programs.vscode = {
enable = true;
package = pkgs.vscode.fhs;
package = pkgsUnstable.vscode.fhs;
profiles.default.extensions = with pkgs.vscode-extensions; [
ms-dotnettools.csharp
ms-dotnettools.csdevkit

View File

@@ -27,6 +27,7 @@ in
settings = {
### MONITOR
monitor = [
"eDP-1,1920x1200,auto,1"
"DP-3,2440x1440,auto,1"
",preferred,auto,1"
];

View File

@@ -1,9 +1,9 @@
{ pkgs, ... }:
{ pkgsUnstable, ... }:
{
services.ollama = {
enable = true;
package = pkgs.ollama-cuda;
package = pkgsUnstable.ollama-cuda;
};
services.open-webui.enable = true;

View File

@@ -5,7 +5,7 @@
initialPassword = "welcome";
isNormalUser = true;
description = "Armel van Ravels";
extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
extraGroups = [ "networkmanager" "wheel" "libvirtd" "dialout"];
packages = with pkgs; [
home-manager
legcord

View File

@@ -24,6 +24,8 @@
../modules/enova.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;