added config for waku
This commit is contained in:
@@ -6,10 +6,10 @@ let
|
||||
common-nvidia = inputs.nixos-hardware.nixosModules.common-gpu-nvidia-nonprime;
|
||||
framework16 = inputs.nixos-hardware.nixosModules.framework-16-7040-amd;
|
||||
|
||||
# mkHost - String -> Boolean -> [Attr] -> Attr - Create nixos system attribute set
|
||||
# @param name - String - Name of the system
|
||||
# @param useXLibre - Boolean - If set true, adds xlibre overlays to modules
|
||||
# @param machine - [Attr] - Array of attribute sets from nixos-hardware nixos Module for setting machine's preset
|
||||
# mkHost := String -> Boolean -> [Attr] -> Attr - Create nixos system attribute set
|
||||
# @param name := String - Name of the system
|
||||
# @param useXLibre := Boolean - If set true, adds xlibre overlays to modules
|
||||
# @param machine := [Attr] - Array of attribute sets from nixos-hardware nixos Module for setting machine's preset
|
||||
# @return - An attribute set that describes NixOS system configurations
|
||||
|
||||
mkHost = name: useXLibre: machine:
|
||||
|
||||
25
hosts/waku/default.nix
Normal file
25
hosts/waku/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../../profiles/base.nix
|
||||
# ../../profiles/desktop.nix
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
tmux
|
||||
];
|
||||
|
||||
networking.hostName = "wakugumi-hitoroku";
|
||||
networking.firewall.enable = true;
|
||||
|
||||
system.stateVersion = "25.11";
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user