feat(flake.nix): add impermanence module to flake

This commit is contained in:
Mohammad Rafiq 2025-05-18 15:46:39 +08:00
parent 067e0c9970
commit 7b591ba470
6 changed files with 32 additions and 10 deletions

View file

@ -1,5 +1,6 @@
{ config, lib, pkgs, ... }:
{
system.hostname = "nemesis";
system.mainUser = "rafiq";
system.bootloader = "systemd-boot";
hardware.drives.btrfs = {
@ -10,15 +11,6 @@
hardware.platform = "amd";
hardware.gpu = "nvidia";
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
networking.useDHCP = lib.mkDefault true;
networking.hostName = "nemesis"; # Define your hostname.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
}