Compare commits
2 commits
93d371d40f
...
a172709df3
Author | SHA1 | Date | |
---|---|---|---|
Evie Litherland-Smith | a172709df3 | ||
Evie Litherland-Smith | 643f1b7753 |
|
@ -11,6 +11,10 @@
|
||||||
etc."ppp/options".text = ''
|
etc."ppp/options".text = ''
|
||||||
ipcp-accept-remote
|
ipcp-accept-remote
|
||||||
'';
|
'';
|
||||||
systemPackages = with pkgs; [openfortivpn samba];
|
systemPackages = with pkgs; [openfortivpn];
|
||||||
|
};
|
||||||
|
services = {
|
||||||
|
samba.enable = true;
|
||||||
|
hardware.bolt.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -102,6 +102,7 @@
|
||||||
useStockConfig = true;
|
useStockConfig = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
security.rtkit.enable = true;
|
||||||
virtualisation.podman.enable = true;
|
virtualisation.podman.enable = true;
|
||||||
time.timeZone = "Europe/London";
|
time.timeZone = "Europe/London";
|
||||||
i18n.defaultLocale = "en_GB.UTF-8";
|
i18n.defaultLocale = "en_GB.UTF-8";
|
||||||
|
|
|
@ -7,10 +7,7 @@
|
||||||
imports = [./default.nix];
|
imports = [./default.nix];
|
||||||
nixpkgs.config.chromium.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
|
nixpkgs.config.chromium.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
|
||||||
system.autoUpgrade.operation = "boot";
|
system.autoUpgrade.operation = "boot";
|
||||||
hardware = {
|
hardware.bluetooth.enable = true;
|
||||||
pulseaudio.enable = true;
|
|
||||||
bluetooth.enable = true;
|
|
||||||
};
|
|
||||||
environment = {
|
environment = {
|
||||||
plasma6 =
|
plasma6 =
|
||||||
lib.mkIf config.services.desktopManager.plasma6.enable
|
lib.mkIf config.services.desktopManager.plasma6.enable
|
||||||
|
@ -33,6 +30,14 @@
|
||||||
services = {
|
services = {
|
||||||
flatpak.enable = true;
|
flatpak.enable = true;
|
||||||
printing.enable = true;
|
printing.enable = true;
|
||||||
|
pipewire = {
|
||||||
|
enable = true;
|
||||||
|
pulse.enable = true;
|
||||||
|
alsa = {
|
||||||
|
enable = true;
|
||||||
|
support32Bit = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
xserver = {
|
xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
xkb = {
|
xkb = {
|
||||||
|
|
Loading…
Reference in a new issue