nixcfg/hosts/m3-kratos/default.nix

45 lines
1.3 KiB
Nix
Raw Normal View History

2024-08-28 15:35:11 +02:00
# A staring point is the basic NIXOS configuration generated by the ISO installer.
# On an existing NIXOS install you can use the following command in your flakes basedir:
# sudo nixos-generate-config --dir ./hosts/m3tam3re
#
# Please make sure to change the first couple of lines in your configuration.nix:
# { config, inputs, ouputs, lib, pkgs, ... }:
#
# {
# imports = [ # Include the results of the hardware scan.
# ./hardware-configuration.nix
# inputs.home-manager.nixosModules.home-manager
# ];
# ...
#
# Moreover please update the packages option in your user configuration and add the home-manager options:
# users.users = {
# m3tam3re = {
# isNormalUser = true;
# initialPassword = "12345";
# extraGroups = [ "wheel" ]; # Enable sudo for the user.
# packages = [ inputs.home-manager.packages.${pkgs.system}.default ];
# };
# };
#
# home-manager = {
# useUserPackages = true;
# extraSpecialArgs = { inherit inputs outputs; };
# users.m3tam3re =
# import ../../home/m3tam3re/${config.networking.hostName}.nix;
# };
#
# Please also change your hostname accordingly:
#:w
# networking.hostName = "nixos"; # Define your hostname.
{
2024-09-21 16:59:39 +02:00
imports = [
../common
./configuration.nix
2024-09-23 14:30:14 +02:00
./secrets.nix
2024-09-21 16:59:39 +02:00
./services
2024-11-02 18:03:16 +01:00
./specialisations.nix
2024-09-21 16:59:39 +02:00
];
extraServices.podman.enable = true;
2024-08-28 15:35:11 +02:00
}