13 lines
239 B
Nix
13 lines
239 B
Nix
# This is your nixos configuration.
|
|
# For home configuration, see /modules/home/*
|
|
{ flake, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
flake.inputs.self.nixosModules.common
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
tmux
|
|
neovim
|
|
];
|
|
}
|