Format nix files
This commit is contained in:
@@ -8,7 +8,8 @@
|
|||||||
outputs = { self, nixpkgs, ... }@inputs:
|
outputs = { self, nixpkgs, ... }@inputs:
|
||||||
let
|
let
|
||||||
secrets = builtins.fromJSON (builtins.readFile ./secrets.json);
|
secrets = builtins.fromJSON (builtins.readFile ./secrets.json);
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
nixosModules = {
|
nixosModules = {
|
||||||
common = import ./modules/common.nix;
|
common = import ./modules/common.nix;
|
||||||
prompt = import ./modules/prompt.nix;
|
prompt = import ./modules/prompt.nix;
|
||||||
|
@@ -20,7 +20,7 @@
|
|||||||
script = "notify-send -u critical \"Backup to B2 failed\" \"$(journalctl -u restic-backups-b2 -n 5 -o cat)\"";
|
script = "notify-send -u critical \"Backup to B2 failed\" \"$(journalctl -u restic-backups-b2 -n 5 -o cat)\"";
|
||||||
};
|
};
|
||||||
restic-backups-b2 = {
|
restic-backups-b2 = {
|
||||||
onFailure = ["notify-backup-b2-failed.service"];
|
onFailure = [ "notify-backup-b2-failed.service" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -3,7 +3,8 @@ let
|
|||||||
ffcheck = pkgs.writeShellScriptBin "ffcheck" ''
|
ffcheck = pkgs.writeShellScriptBin "ffcheck" ''
|
||||||
${pkgs.ffmpeg}/bin/ffmpeg -v error -stats -hide_banner -i "$1" -c copy -f null -
|
${pkgs.ffmpeg}/bin/ffmpeg -v error -stats -hide_banner -i "$1" -c copy -f null -
|
||||||
'';
|
'';
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
imports = [
|
imports = [
|
||||||
self.nixosModules.common
|
self.nixosModules.common
|
||||||
self.nixosModules.prompt
|
self.nixosModules.prompt
|
||||||
@@ -39,7 +40,7 @@ in {
|
|||||||
"sd_mod"
|
"sd_mod"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
kernelModules = ["kvm-amd"];
|
kernelModules = [ "kvm-amd" ];
|
||||||
kernelParams = [ "amd_pstate=active" ];
|
kernelParams = [ "amd_pstate=active" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -49,7 +50,7 @@ in {
|
|||||||
opengl = {
|
opengl = {
|
||||||
enable = true;
|
enable = true;
|
||||||
driSupport32Bit = true;
|
driSupport32Bit = true;
|
||||||
extraPackages = [pkgs.vaapiVdpau];
|
extraPackages = [ pkgs.vaapiVdpau ];
|
||||||
};
|
};
|
||||||
nvidia.prime = {
|
nvidia.prime = {
|
||||||
offload = {
|
offload = {
|
||||||
@@ -107,7 +108,7 @@ in {
|
|||||||
|
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
videoDrivers = ["nvidia"];
|
videoDrivers = [ "nvidia" ];
|
||||||
desktopManager = {
|
desktopManager = {
|
||||||
cinnamon.enable = true;
|
cinnamon.enable = true;
|
||||||
xterm.enable = false;
|
xterm.enable = false;
|
||||||
@@ -132,4 +133,3 @@ in {
|
|||||||
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
{ self, pkgs, secrets, ... }:
|
{ self, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
self.nixosModules.common
|
self.nixosModules.common
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
{ options, lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
{
|
{
|
||||||
options.promptEmoji = lib.mkOption {
|
options.promptEmoji = lib.mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
|
Reference in New Issue
Block a user