This commit is contained in:
Kenryu Shibata
2026-01-07 01:42:09 +09:00
parent a743f2c943
commit d471aa77f9
8 changed files with 151 additions and 17 deletions

View File

@@ -0,0 +1,27 @@
{ config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../../profiles/base.nix
../../profiles/desktop.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
services.desktopManager.plasma6.enable = true;
environment.systemPackages = with pkgs; [
vim
tmux
];
networking.hostName = "alanturing";
networking.firewall.enable = true;
system.stateVersion = "25.11";
}