2024-03-29 20:38:51 +01:00
|
|
|
{...}: {
|
2023-08-01 15:35:09 +02:00
|
|
|
imports = [
|
2023-08-13 19:28:37 +02:00
|
|
|
../../overlays
|
2023-08-01 15:35:09 +02:00
|
|
|
../../modules/base
|
|
|
|
../../modules/desktop
|
2024-03-22 19:09:00 +01:00
|
|
|
../../modules/games.nix
|
2024-03-04 00:51:54 +01:00
|
|
|
./borg.nix
|
2024-05-10 20:34:38 +02:00
|
|
|
./hardware.nix
|
2023-10-22 16:07:08 +02:00
|
|
|
./sway.nix
|
2024-05-10 20:34:38 +02:00
|
|
|
./syncthing.nix
|
2023-08-01 15:35:09 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "omega";
|
|
|
|
|
|
|
|
boot = {
|
|
|
|
loader = {
|
|
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
systemd-boot.enable = true;
|
|
|
|
};
|
|
|
|
initrd.luks.devices.crypted.device = "/dev/disk/by-label/crypted";
|
|
|
|
};
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
# on your system were taken. It's perfectly fine and recommended to leave
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
2024-06-02 22:56:02 +02:00
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
2023-08-01 15:35:09 +02:00
|
|
|
|
|
|
|
# This value determines the Home Manager release that your
|
|
|
|
# configuration is compatible with. This helps avoid breakage
|
|
|
|
# when a new Home Manager release introduces backwards
|
|
|
|
# incompatible changes.
|
|
|
|
# You can update Home Manager without changing this value. See
|
|
|
|
# the Home Manager release notes for a list of state version
|
|
|
|
# changes in each release.
|
2024-06-02 22:56:02 +02:00
|
|
|
home-manager.users.caspervk.home.stateVersion = "24.05"; # Did you read the comment?
|
2023-08-01 15:35:09 +02:00
|
|
|
}
|