formatted everything, things are looking nice now.

This commit is contained in:
Charlie Root 2024-05-15 00:14:59 +02:00
commit d2d4054aa5
57 changed files with 2269 additions and 2311 deletions

View file

@ -1,10 +1,10 @@
_:{
_: {
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
device = "nodev";
};
};
enable = true;
efiSupport = true;
device = "nodev";
};
};
}

View file

@ -1,19 +1,18 @@
{ config, lib, pkgs, ... }:
let
username = config.modules.other.system.username;
let username = config.modules.other.system.username;
in {
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
};
services.blueman.enable = true;
services.blueman.enable = true;
# Bluetooth headset media control buttons
systemd.user.services.mpris-proxy = {
description = "Mpris proxy";
after = [ "network.target" "sound.target" ];
wantedBy = [ "default.target" ];
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
# Bluetooth headset media control buttons
systemd.user.services.mpris-proxy = {
description = "Mpris proxy";
after = [ "network.target" "sound.target" ];
wantedBy = [ "default.target" ];
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
}

View file

@ -1,5 +1,4 @@
{ config, lib, pkgs, ...}:
{
{ config, lib, pkgs, ... }: {
services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl = {
enable = true;

View file

@ -1,19 +1,15 @@
{ config, lib, ... }:
let
username = config.modules.other.system.username;
let username = config.modules.other.system.username;
in {
networking = {
networking = {
networkmanager = {
enable = true;
dns = "systemd-resolved";
enable = true;
dns = "systemd-resolved";
};
};
services.resolved = {
enable = true;
fallbackDns = [
"9.9.9.9"
"2620::fe::fe"
];
enable = true;
fallbackDns = [ "9.9.9.9" "2620::fe::fe" ];
};
users.users.${username}.extraGroups = [ "networkmanager" ];
}

View file

@ -1,4 +1,3 @@
{ inputs, lib, ...}:
{
nix.registry = lib.mapAttrs (_: v: {flake = v; }) inputs;
{ inputs, lib, ... }: {
nix.registry = lib.mapAttrs (_: v: { flake = v; }) inputs;
}

View file

@ -1,6 +1 @@
{
self,
...
}: {
environment.etc."current-flake".source = self;
}
{ self, ... }: { environment.etc."current-flake".source = self; }

View file

@ -1,10 +1,7 @@
{ pkgs, ... }:
{
{ pkgs, ... }: {
fonts.packages = with pkgs; [
material-design-icons
(nerdfonts.override {
fonts = [ "JetBrainsMono"];
})
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif

View file

@ -1,75 +1,73 @@
{ config, lib, ... }:
{ config, lib, ... }:
with lib;
{
with lib; {
options.modules.other.system.monitors = mkOption {
description = "
List of monitors to use
";
default = [];
type = with types; types.listOf (submodule {
options = {
name = mkOption {
type = types.str;
description = "Give your monitor a cute name";
default = "monitor0(I am lazy)";
};
device = mkOption {
type = types.str;
description = "The actual device name of the monitor";
};
resolution = mkOption {
type = types.submodule {
options = {
x = mkOption {
type = types.int;
description = "monitor width";
default = "1920";
};
y = mkOption {
type = types.int;
description = "monitor height";
default = "1080";
description = "\n List of monitors to use\n ";
default = [ ];
type = with types;
types.listOf (submodule {
options = {
name = mkOption {
type = types.str;
description = "Give your monitor a cute name";
default = "monitor0(I am lazy)";
};
device = mkOption {
type = types.str;
description = "The actual device name of the monitor";
};
resolution = mkOption {
type = types.submodule {
options = {
x = mkOption {
type = types.int;
description = "monitor width";
default = "1920";
};
y = mkOption {
type = types.int;
description = "monitor height";
default = "1080";
};
};
};
};
};
scale = mkOption {
scale = mkOption {
type = types.number;
description = "monitor scale";
default = 1.0;
};
refresh_rate = mkOption {
type = types.int;
description = "monitor refresh rate (in Hz)";
default = 60;
};
position = mkOption {
type = types.submodule {
options = {
x = mkOption {
type = types.int;
default = 0;
};
y = mkOption {
type = types.int;
default = 0;
};
refresh_rate = mkOption {
type = types.int;
description = "monitor refresh rate (in Hz)";
default = 60;
};
position = mkOption {
type = types.submodule {
options = {
x = mkOption {
type = types.int;
default = 0;
};
y = mkOption {
type = types.int;
default = 0;
};
};
};
description = "absolute monitor posititon";
default = {
x = 0;
y = 0;
};
};
description = "absolute monitor posititon";
default = {
x = 0;
y = 0;
transform = mkOption {
type = types.ints.between 0 3;
description = "Rotation of the monitor counterclockwise";
default = 0;
};
};
transform = mkOption {
type = types.ints.between 0 3;
description = "Rotation of the monitor counterclockwise";
default = 0;
};
};
});
});
};
}