mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
24 lines
699 B
Nix
24 lines
699 B
Nix
# Edit this configuration file to define what should be installed on
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
# and in the NixOS manual (accessible by running `nixos-help`).
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Paths to other modules.
|
|
# Compose this module out of smaller ones.
|
|
# https://nixos.wiki/wiki/NixOS_modules
|
|
imports =
|
|
[ # Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
./home-manager.nix
|
|
../../modules/base.nix
|
|
../../modules/programs.nix
|
|
../../modules/print-and-scan.nix
|
|
../../modules/fde-ssh-unlock.nix
|
|
../../modules/nextcloud-integration.nix
|
|
];
|
|
|
|
networking.hostName = "yodaTux";
|
|
}
|