adding bootloader

This commit is contained in:
Ivan Dimitrov 2023-08-13 19:48:37 +03:00
parent 0e8124e085
commit 69647409b6
2 changed files with 19 additions and 6 deletions

View File

@ -236,11 +236,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1691506824, "lastModified": 1691882297,
"narHash": "sha256-Z2Ms7036CCEAfCmDBDy+sFauO6/7fx2UN3aoPCpp4tA=", "narHash": "sha256-e1/LAQSGLnBywfA1TfMl0Vj3tvYka73XOZ/D2/CJowE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "7b8d43fbaf8450c30caaed5eab876897d0af891b", "rev": "c3ab5ea047e6dc73df530948f7367455749d8906",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -354,11 +354,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1691368598, "lastModified": 1691654369,
"narHash": "sha256-ia7li22keBBbj02tEdqjVeLtc7ZlSBuhUk+7XTUFr14=", "narHash": "sha256-gSILTEx1jRaJjwZxRlnu3ZwMn1FVNk80qlwiCX8kmpo=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "5a8e9243812ba528000995b294292d3b5e120947", "rev": "ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -1,5 +1,18 @@
{ pkgs, ... }: { { pkgs, ... }: {
nix = {
extraOptions = ''
experimental-features = nix-command flakes
'';
};
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
mailserver = { mailserver = {
enable = true; enable = true;
fqdn = "mail.idimitrov.dev"; fqdn = "mail.idimitrov.dev";