formatted everything with nixfmt
This commit is contained in:
parent
3675fbdcc1
commit
b42a379322
20 changed files with 343 additions and 240 deletions
107
flake.nix
107
flake.nix
|
@ -44,55 +44,66 @@
|
||||||
musnix.url = "github:musnix/musnix";
|
musnix.url = "github:musnix/musnix";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, stablepkgs, home-manager, ... } @ inputs:
|
outputs =
|
||||||
let
|
{
|
||||||
system = "x86_64-linux";
|
self,
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
nixpkgs,
|
||||||
stablepkgs = stablepkgs.legacyPacakges.${system};
|
stablepkgs,
|
||||||
in
|
home-manager,
|
||||||
{
|
...
|
||||||
nixosConfigurations.gabbielaptop = nixpkgs.lib.nixosSystem {
|
}@inputs:
|
||||||
inherit system;
|
let
|
||||||
specialArgs = { inherit inputs; };
|
|
||||||
modules = [
|
|
||||||
# Import nixos modules here
|
|
||||||
./hosts/gabbielaptop/configuration.nix
|
|
||||||
./modules/nh.nix
|
|
||||||
./modules/waydroid.nix
|
|
||||||
./modules/packages.nix
|
|
||||||
./modules/aagl.nix
|
|
||||||
inputs.aagl.nixosModules.default
|
|
||||||
inputs.lanzaboote.nixosModules.lanzaboote
|
|
||||||
inputs.musnix.nixosModules.musnix
|
|
||||||
# inputs.stylix.nixosModules.stylix
|
|
||||||
{ nix.settings = inputs.aagl.nixConfig; } # Setup cachix for aagl projects
|
|
||||||
|
|
||||||
# Imports home-manager module for use within nixos, not reccomended for use WITH standalone version
|
|
||||||
# inputs.home-manager.nixosModules.default
|
|
||||||
];
|
|
||||||
};
|
|
||||||
nixosConfigurations.biggerpi = nixpkgs.lib.nixosSystem {
|
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
inputs.disko.nixosModules.disko
|
stablepkgs = stablepkgs.legacyPacakges.${system};
|
||||||
inputs.satisfactory-server.nixosModules.satisfactory
|
in
|
||||||
./hosts/biggerpi/configuration.nix
|
{
|
||||||
./modules/satisfactory-server.nix
|
nixosConfigurations.gabbielaptop = nixpkgs.lib.nixosSystem {
|
||||||
];
|
inherit system;
|
||||||
};
|
specialArgs = {
|
||||||
|
inherit inputs;
|
||||||
|
};
|
||||||
|
modules = [
|
||||||
|
# Import nixos modules here
|
||||||
|
./hosts/gabbielaptop/configuration.nix
|
||||||
|
./modules/nh.nix
|
||||||
|
./modules/waydroid.nix
|
||||||
|
./modules/packages.nix
|
||||||
|
./modules/aagl.nix
|
||||||
|
inputs.aagl.nixosModules.default
|
||||||
|
inputs.lanzaboote.nixosModules.lanzaboote
|
||||||
|
inputs.musnix.nixosModules.musnix
|
||||||
|
# inputs.stylix.nixosModules.stylix
|
||||||
|
{ nix.settings = inputs.aagl.nixConfig; } # Setup cachix for aagl projects
|
||||||
|
|
||||||
# Standalone home-manager config
|
# Imports home-manager module for use within nixos, not reccomended for use WITH standalone version
|
||||||
homeConfigurations.blue = home-manager.lib.homeManagerConfiguration {
|
# inputs.home-manager.nixosModules.default
|
||||||
inherit pkgs;
|
];
|
||||||
extraSpecialArgs = { inherit inputs; };
|
};
|
||||||
# Import home-manager modules here
|
nixosConfigurations.biggerpi = nixpkgs.lib.nixosSystem {
|
||||||
modules = [
|
system = "x86_64-linux";
|
||||||
./home-manager/home.nix
|
modules = [
|
||||||
# ./home-manager/librewolf.nix
|
inputs.disko.nixosModules.disko
|
||||||
inputs.flatpaks.homeManagerModules.default
|
inputs.satisfactory-server.nixosModules.satisfactory
|
||||||
inputs.nixvim.homeManagerModules.default
|
./hosts/biggerpi/configuration.nix
|
||||||
inputs.stylix.homeManagerModules.stylix # Not compatible with NixOS module as they will interfere with one another, use this when building on a non-NixOS machine
|
./modules/satisfactory-server.nix
|
||||||
];
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
# Standalone home-manager config
|
||||||
|
homeConfigurations.blue = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit pkgs;
|
||||||
|
extraSpecialArgs = {
|
||||||
|
inherit inputs;
|
||||||
|
};
|
||||||
|
# Import home-manager modules here
|
||||||
|
modules = [
|
||||||
|
./home-manager/home.nix
|
||||||
|
# ./home-manager/librewolf.nix
|
||||||
|
inputs.flatpaks.homeManagerModules.default
|
||||||
|
inputs.nixvim.homeManagerModules.default
|
||||||
|
inputs.stylix.homeManagerModules.stylix # Not compatible with NixOS module as they will interfere with one another, use this when building on a non-NixOS machine
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
{config, ... }:{
|
{ config, ... }:
|
||||||
|
{
|
||||||
programs.git.enable = true;
|
programs.git.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,10 @@
|
||||||
{ config, pkgs, lib, inputs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.username = "blue";
|
home.username = "blue";
|
||||||
|
@ -10,7 +16,7 @@
|
||||||
./swaync.nix
|
./swaync.nix
|
||||||
./flatpak.nix
|
./flatpak.nix
|
||||||
./sober.nix
|
./sober.nix
|
||||||
# ./librewolf.nix
|
# ./librewolf.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
./eza.nix
|
./eza.nix
|
||||||
./nixvim.nix
|
./nixvim.nix
|
||||||
|
@ -22,31 +28,31 @@
|
||||||
# States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed
|
# States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.05";
|
||||||
|
|
||||||
# services.pass-secret-service.enable = true; # for use with protonmail-bridge
|
# services.pass-secret-service.enable = true; # for use with protonmail-bridge
|
||||||
services.gnome-keyring.enable = true; # used for protonmail-bridge and nextcloud-client
|
services.gnome-keyring.enable = true; # used for protonmail-bridge and nextcloud-client
|
||||||
|
|
||||||
# Cursor configuration that I hope to one day understand, currently has a scaling issue but thats probably my fault
|
# Cursor configuration that I hope to one day understand, currently has a scaling issue but thats probably my fault
|
||||||
# home.pointerCursor =
|
# home.pointerCursor =
|
||||||
# let
|
# let
|
||||||
# getFrom = url: hash: name: {
|
# getFrom = url: hash: name: {
|
||||||
# gtk.enable = true;
|
# gtk.enable = true;
|
||||||
# x11.enable = true;
|
# x11.enable = true;
|
||||||
# name = name;
|
# name = name;
|
||||||
# size = 24;
|
# size = 24;
|
||||||
# package =
|
# package =
|
||||||
# pkgs.runCommand "moveUp" {} ''
|
# pkgs.runCommand "moveUp" {} ''
|
||||||
# mkdir -p $out/share/icons
|
# mkdir -p $out/share/icons
|
||||||
# ln -s ${pkgs.fetchzip {
|
# ln -s ${pkgs.fetchzip {
|
||||||
# url = url;
|
# url = url;
|
||||||
# hash = hash;
|
# hash = hash;
|
||||||
# }} $out/share/icons/${name}
|
# }} $out/share/icons/${name}
|
||||||
# '';
|
# '';
|
||||||
# };
|
# };
|
||||||
# in
|
# in
|
||||||
# getFrom
|
# getFrom
|
||||||
# "https://github.com/ful1e5/fuchsia-cursor/releases/download/v2.0.0/Fuchsia-Pop.tar.gz"
|
# "https://github.com/ful1e5/fuchsia-cursor/releases/download/v2.0.0/Fuchsia-Pop.tar.gz"
|
||||||
# "sha256-BvVE9qupMjw7JRqFUj1J0a4ys6kc9fOLBPx2bGaapTk="
|
# "sha256-BvVE9qupMjw7JRqFUj1J0a4ys6kc9fOLBPx2bGaapTk="
|
||||||
# "Fuchsia-Pop";
|
# "Fuchsia-Pop";
|
||||||
|
|
||||||
# General use home packages that dont require a separate module
|
# General use home packages that dont require a separate module
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
@ -54,7 +60,7 @@
|
||||||
grimblast
|
grimblast
|
||||||
powerline-fonts
|
powerline-fonts
|
||||||
nix-output-monitor
|
nix-output-monitor
|
||||||
# bitwarden-desktop
|
# bitwarden-desktop
|
||||||
xwaylandvideobridge
|
xwaylandvideobridge
|
||||||
virtualbox
|
virtualbox
|
||||||
wofi
|
wofi
|
||||||
|
@ -86,33 +92,33 @@
|
||||||
lines = 3;
|
lines = 3;
|
||||||
columns = 200;
|
columns = 200;
|
||||||
};
|
};
|
||||||
# font.normal = {
|
# font.normal = {
|
||||||
# family = "hack";
|
# family = "hack";
|
||||||
# };
|
# };
|
||||||
# keyboard.bindings = [
|
# keyboard.bindings = [
|
||||||
# {
|
# {
|
||||||
# key = "K";
|
# key = "K";
|
||||||
# mods = "Control";
|
# mods = "Control";
|
||||||
# chars = "\\u000c";
|
# chars = "\\u000c";
|
||||||
# }
|
# }
|
||||||
# ];
|
# ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# programs.hyprpaper = {
|
# programs.hyprpaper = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# settings = {
|
# settings = {
|
||||||
# ipc = "on";
|
# ipc = "on";
|
||||||
# splash = false;
|
# splash = false;
|
||||||
# splash_offset = 2.0;
|
# splash_offset = 2.0;
|
||||||
|
|
||||||
# preload = [ "~/Pictures/wallpaper.png" ];
|
# preload = [ "~/Pictures/wallpaper.png" ];
|
||||||
|
|
||||||
# wallpaper = [
|
# wallpaper = [
|
||||||
# ",~/Pictures/wallpaper.png"
|
# ",~/Pictures/wallpaper.png"
|
||||||
# ];
|
# ];
|
||||||
# };
|
# };
|
||||||
# };
|
# };
|
||||||
programs.hyprlock = {
|
programs.hyprlock = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
@ -142,8 +148,8 @@
|
||||||
inner_color = "rgb(91, 96, 120)";
|
inner_color = "rgb(91, 96, 120)";
|
||||||
outer_color = "rgb(24, 25, 38)";
|
outer_color = "rgb(24, 25, 38)";
|
||||||
outline_thickness = 5;
|
outline_thickness = 5;
|
||||||
# placeholder_text = "<span foreground="##cad3f5">Password...</span>";
|
# placeholder_text = "<span foreground="##cad3f5">Password...</span>";
|
||||||
# shadow_passes = 2;
|
# shadow_passes = 2;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,18 +10,17 @@
|
||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
# Monitor config for home desk layout
|
# Monitor config for home desk layout
|
||||||
monitor =
|
monitor = [
|
||||||
[
|
"eDP-2, 2560x1600@165, 0x0, auto" # main laptop monitor
|
||||||
"eDP-2, 2560x1600@165, 0x0, auto" # main laptop monitor
|
"DP-2, 1920x1080@119.98, -960x-1080, auto" # left external monitor
|
||||||
"DP-2, 1920x1080@119.98, -960x-1080, auto" # left external monitor
|
"DP-3, 1920x1080@119.98, 960x-1080, auto" # right external monitor
|
||||||
"DP-3, 1920x1080@119.98, 960x-1080, auto" # right external monitor
|
];
|
||||||
];
|
|
||||||
|
|
||||||
# Define SUPER key as mod key
|
# Define SUPER key as mod key
|
||||||
"$mod" = "SUPER";
|
"$mod" = "SUPER";
|
||||||
|
|
||||||
# Set keyboard layout
|
# Set keyboard layout
|
||||||
input = {
|
input = {
|
||||||
kb_layout = "gb";
|
kb_layout = "gb";
|
||||||
follow_mouse = 1;
|
follow_mouse = 1;
|
||||||
mouse_refocus = false;
|
mouse_refocus = false;
|
||||||
|
@ -39,24 +38,23 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
# Declare all keybinds
|
# Declare all keybinds
|
||||||
bind =
|
bind = [
|
||||||
[
|
# Keybinds for starting programs
|
||||||
# Keybinds for starting programs
|
"$mod, F, exec, firefox"
|
||||||
"$mod, F, exec, firefox"
|
"$mod, 1, exec, alacritty"
|
||||||
"$mod, 1, exec, alacritty"
|
"$mod, D, exec, vesktop"
|
||||||
"$mod, D, exec, vesktop"
|
"$mod, space, exec, wofi --show drun, run"
|
||||||
"$mod, space, exec, wofi --show drun, run"
|
|
||||||
|
|
||||||
# Screenshot tool
|
# Screenshot tool
|
||||||
", Print, exec, grimblast copy area"
|
", Print, exec, grimblast copy area"
|
||||||
|
|
||||||
# Screen locking tool
|
# Screen locking tool
|
||||||
"$mod, l, exec, hyprlock"
|
"$mod, l, exec, hyprlock"
|
||||||
|
|
||||||
# Window management
|
# Window management
|
||||||
"$mod, x, killactive"
|
"$mod, x, killactive"
|
||||||
"$mod, tab, togglefloating"
|
"$mod, tab, togglefloating"
|
||||||
];
|
];
|
||||||
|
|
||||||
# Prevent xwayland apps from looking pixellated, cursor scaling to compensate for this is defined in home.nix
|
# Prevent xwayland apps from looking pixellated, cursor scaling to compensate for this is defined in home.nix
|
||||||
xwayland = {
|
xwayland = {
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, pkgs, stablepkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
stablepkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
{
|
{
|
||||||
programs.librewolf = {
|
programs.librewolf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
services.nextcloud-client = {
|
services.nextcloud-client = {
|
||||||
enable = true;
|
enable = true;
|
||||||
startInBackground = true;
|
startInBackground = true;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{config, pkgs, ... }: {
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
# plugins.neotree.enable = true;
|
# plugins.neotree.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
services.flatpak = {
|
services.flatpak = {
|
||||||
packages = [
|
packages = [
|
||||||
"sober:/root/sober.flatpakref"
|
"sober:/root/sober.flatpakref"
|
||||||
# https://sober.vinegarhq.org/sober.flatpakref
|
# https://sober.vinegarhq.org/sober.flatpakref
|
||||||
];
|
];
|
||||||
remotes = {
|
remotes = {
|
||||||
"sober" = "https://sober.vinegarhq.org/";
|
"sober" = "https://sober.vinegarhq.org/";
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{ config, ... }: {
|
{ config, ... }:
|
||||||
stylix = {
|
{
|
||||||
enable = true;
|
stylix = {
|
||||||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/icy.yaml";
|
enable = true;
|
||||||
image = ./wallpaper.png;
|
# base16Scheme = "${pkgs.base16-schemes}/share/themes/icy.yaml";
|
||||||
|
image = ./wallpaper.png;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{config, pkgs, ...}:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
# Enables swaync and automatically includes systemd user service to auto-start on login, this cannot be disabled so I am using it instead of hyprland exec-once otherwise home-manager complains that the service failed to start
|
# Enables swaync and automatically includes systemd user service to auto-start on login, this cannot be disabled so I am using it instead of hyprland exec-once otherwise home-manager complains that the service failed to start
|
||||||
services.swaync = {
|
services.swaync = {
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
{ config, pkgs, lib, inputs, ... }:
|
{
|
||||||
{
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
systemd.enable = true; # using these instead of exec-once beacuse SOME packages (swaync) dont let you disable them
|
systemd.enable = true; # using these instead of exec-once beacuse SOME packages (swaync) dont let you disable them
|
||||||
|
@ -14,17 +20,25 @@
|
||||||
"DP-3"
|
"DP-3"
|
||||||
];
|
];
|
||||||
modules-left = [ "wlr/taskbar" ];
|
modules-left = [ "wlr/taskbar" ];
|
||||||
modules-center = [ "clock" "custom/swaync" ];
|
modules-center = [
|
||||||
modules-right = [ "pulseaudio/slider" "backlight/slider" "battery" "tray" ];
|
"clock"
|
||||||
|
"custom/swaync"
|
||||||
|
];
|
||||||
|
modules-right = [
|
||||||
|
"pulseaudio/slider"
|
||||||
|
"backlight/slider"
|
||||||
|
"battery"
|
||||||
|
"tray"
|
||||||
|
];
|
||||||
"clock" = {
|
"clock" = {
|
||||||
"format" = "{:%A %d %b %T}";
|
"format" = "{:%A %d %b %T}";
|
||||||
# "tooltip" = true;
|
# "tooltip" = true;
|
||||||
# "tooltip-format" = "{=%A; %d %B %Y}\n<tt>{calendar}</tt>";
|
# "tooltip-format" = "{=%A; %d %B %Y}\n<tt>{calendar}</tt>";
|
||||||
"interval" = 1;
|
"interval" = 1;
|
||||||
};
|
};
|
||||||
"custom/swaync" = {
|
"custom/swaync" = {
|
||||||
"tooltip" = false;
|
"tooltip" = false;
|
||||||
"format"= "{icon} {}";
|
"format" = "{icon} {}";
|
||||||
"format-icons" = {
|
"format-icons" = {
|
||||||
"notification" = "🔔<span foreground='red'><sup>🔔</sup></span>";
|
"notification" = "🔔<span foreground='red'><sup>🔔</sup></span>";
|
||||||
"none" = "🔔";
|
"none" = "🔔";
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
|
|
|
@ -2,17 +2,25 @@
|
||||||
# your system. Help is available in the configuration.nix(5) man page, on
|
# your system. Help is available in the configuration.nix(5) man page, on
|
||||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||||
|
|
||||||
{ config, lib, pkgs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[ # Include the results of the hardware scan.
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./disk-config.nix
|
./disk-config.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable flakes
|
# Enable flakes
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [
|
||||||
|
"nix-command"
|
||||||
|
"flakes"
|
||||||
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
@ -33,7 +41,7 @@
|
||||||
|
|
||||||
users.users.jellyfin.uid = null;
|
users.users.jellyfin.uid = null;
|
||||||
users.users.jellyfin.group = "media";
|
users.users.jellyfin.group = "media";
|
||||||
users.users.jellyfin.isSystemUser = true;
|
users.users.jellyfin.isSystemUser = true;
|
||||||
|
|
||||||
services.jellyfin = {
|
services.jellyfin = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -45,21 +53,21 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’. Please change the initialHashedPassword for each deployment to avoid a brute force attack on this password allowing login to the system before an actual password is set.
|
# Define a user account. Don't forget to set a password with ‘passwd’. Please change the initialHashedPassword for each deployment to avoid a brute force attack on this password allowing login to the system before an actual password is set.
|
||||||
users.users.blue = {
|
users.users.blue = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
||||||
initialHashedPassword = "$y$j9T$TbW09JXLRpNJ924xc5JEf1$YNroqf2T7AUnVzKi933eLRUp/0Bez8itOeMYsLw9g3A";
|
initialHashedPassword = "$y$j9T$TbW09JXLRpNJ924xc5JEf1$YNroqf2T7AUnVzKi933eLRUp/0Bez8itOeMYsLw9g3A";
|
||||||
# packages = with pkgs; [
|
# packages = with pkgs; [
|
||||||
# neovim
|
# neovim
|
||||||
# tree
|
# tree
|
||||||
# ];
|
# ];
|
||||||
openssh.authorizedKeys.keys = [
|
openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBqczzd/CZJMg+jmxqhl0NS7GTNymsddrxDXyTtoG9zo blue@gabbielaptop"
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBqczzd/CZJMg+jmxqhl0NS7GTNymsddrxDXyTtoG9zo blue@gabbielaptop"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
wget
|
wget
|
||||||
neovim
|
neovim
|
||||||
|
@ -89,4 +97,3 @@
|
||||||
system.stateVersion = "24.05"; # Did you read the comment?
|
system.stateVersion = "24.05"; # Did you read the comment?
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,26 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" ];
|
boot.initrd.availableKernelModules = [
|
||||||
|
"xhci_pci"
|
||||||
|
"ahci"
|
||||||
|
"nvme"
|
||||||
|
"usb_storage"
|
||||||
|
"sd_mod"
|
||||||
|
];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
|
@ -2,17 +2,22 @@
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
|
|
||||||
{ config, lib, pkgs, inputs, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
inputs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
imports =
|
imports = [
|
||||||
[
|
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
# boot.loader.efi.canTouchEfiVariables = true;
|
# boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
initrd.systemd.enable = true;
|
initrd.systemd.enable = true;
|
||||||
|
@ -25,10 +30,13 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [
|
||||||
|
"nix-command"
|
||||||
|
"flakes"
|
||||||
|
];
|
||||||
|
|
||||||
# default kernel causes issues with wpa_supplicant meaning shutdown times are > 10 mins updating to kernel 69+ fixes this
|
# default kernel causes issues with wpa_supplicant meaning shutdown times are > 10 mins updating to kernel 69+ fixes this
|
||||||
# boot.kernelPackages = pkgs.linuxKernel.packages.linux_zen;
|
# boot.kernelPackages = pkgs.linuxKernel.packages.linux_zen;
|
||||||
|
|
||||||
# I was told that adding these helps but it doesnt seemt to work as monitors are still buggy at 144hz, may as well keep them
|
# I was told that adding these helps but it doesnt seemt to work as monitors are still buggy at 144hz, may as well keep them
|
||||||
boot.kernelParams = [
|
boot.kernelParams = [
|
||||||
|
@ -75,16 +83,16 @@
|
||||||
|
|
||||||
# Enable the X11 windowing system.
|
# Enable the X11 windowing system.
|
||||||
# You can disable this if you're only using the Wayland session.
|
# You can disable this if you're only using the Wayland session.
|
||||||
# services.xserver.enable = true;
|
# services.xserver.enable = true;
|
||||||
|
|
||||||
# Enable the KDE Plasma Desktop Environment.
|
# Enable the KDE Plasma Desktop Environment.
|
||||||
services.displayManager.sddm.enable = true;
|
services.displayManager.sddm.enable = true;
|
||||||
services.displayManager.sddm.wayland.enable = true;
|
services.displayManager.sddm.wayland.enable = true;
|
||||||
# services.desktopManager.plasma6.enable = true;
|
# services.desktopManager.plasma6.enable = true;
|
||||||
|
|
||||||
# Enable the Hyprland WM functionality for NixOS (xdg portals etc.)
|
# Enable the Hyprland WM functionality for NixOS (xdg portals etc.)
|
||||||
programs.hyprland.enable = true;
|
programs.hyprland.enable = true;
|
||||||
# programs.waybar.enable = true;
|
# programs.waybar.enable = true;
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver.xkb.layout = "gb";
|
services.xserver.xkb.layout = "gb";
|
||||||
|
@ -116,43 +124,50 @@
|
||||||
# no need to redefine it in your config for now)
|
# no need to redefine it in your config for now)
|
||||||
#media-session.enable = true;
|
#media-session.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
musnix.enable = true;
|
musnix.enable = true;
|
||||||
|
|
||||||
|
# pam.services = [
|
||||||
# pam.services = [
|
# { name = "gnome_keyring"
|
||||||
# { name = "gnome_keyring"
|
# text = ''
|
||||||
# text = ''
|
# auth optional ${gnome3.gnome_keyring}/lib/security/pam_gnome_keyring.so
|
||||||
# auth optional ${gnome3.gnome_keyring}/lib/security/pam_gnome_keyring.so
|
# session optional ${gnome3.gnome_keyring}/lib/security/pam_gnome_keyring.so auto_start
|
||||||
# session optional ${gnome3.gnome_keyring}/lib/security/pam_gnome_keyring.so auto_start
|
#
|
||||||
#
|
# password optional ${gnome3.gnome_keyring}/lib/security/pam_gnome_keyring.so
|
||||||
# password optional ${gnome3.gnome_keyring}/lib/security/pam_gnome_keyring.so
|
# '';
|
||||||
# '';
|
# }
|
||||||
# }
|
# ];
|
||||||
# ];
|
|
||||||
|
|
||||||
services.gnome.gnome-keyring.enable = true;
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
|
||||||
nix.settings.trusted-users = [ "root" "blue" ];
|
nix.settings.trusted-users = [
|
||||||
|
"root"
|
||||||
|
"blue"
|
||||||
|
];
|
||||||
|
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
users.users.blue = {
|
users.users.blue = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Gabriella Bere";
|
description = "Gabriella Bere";
|
||||||
extraGroups = [ "networkmanager" "wheel" "dialout" "audio" ];
|
extraGroups = [
|
||||||
|
"networkmanager"
|
||||||
|
"wheel"
|
||||||
|
"dialout"
|
||||||
|
"audio"
|
||||||
|
];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
||||||
# home-manager = {
|
# home-manager = {
|
||||||
# extraSpecialArgs = { inherit inputs; };
|
# extraSpecialArgs = { inherit inputs; };
|
||||||
# users = {
|
# users = {
|
||||||
# "blue" = import ../../home-manager/home.nix;
|
# "blue" = import ../../home-manager/home.nix;
|
||||||
# };
|
# };
|
||||||
# };
|
# };
|
||||||
|
|
||||||
# Enable fingerprint daemon
|
# Enable fingerprint daemon
|
||||||
services.fprintd.enable = true;
|
services.fprintd.enable = true;
|
||||||
# services.fprintd.tod.enable = true;
|
# services.fprintd.tod.enable = true;
|
||||||
|
|
||||||
# Enable bluetooth and blueman
|
# Enable bluetooth and blueman
|
||||||
hardware.bluetooth = {
|
hardware.bluetooth = {
|
||||||
|
@ -179,10 +194,10 @@
|
||||||
|
|
||||||
# Enable steam and enable steam remoteplay
|
# Enable steam and enable steam remoteplay
|
||||||
programs.steam.enable = true;
|
programs.steam.enable = true;
|
||||||
programs.steam.remotePlay.openFirewall = true;
|
programs.steam.remotePlay.openFirewall = true;
|
||||||
|
|
||||||
# This desperately needs moving to home.nix but the home-manager module is not yet available
|
# This desperately needs moving to home.nix but the home-manager module is not yet available
|
||||||
|
|
||||||
services.protonmail-bridge = {
|
services.protonmail-bridge = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = [ pkgs.gnome-keyring ];
|
path = [ pkgs.gnome-keyring ];
|
||||||
|
@ -190,15 +205,15 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# protonmail daemon config
|
# protonmail daemon config
|
||||||
# systemd.user.services.protonmail-bridge = {
|
# systemd.user.services.protonmail-bridge = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# wantedBy = [ "default.target" ];
|
# wantedBy = [ "default.target" ];
|
||||||
# description = "autostart protonmail-bridge on login as a daemon";
|
# description = "autostart protonmail-bridge on login as a daemon";
|
||||||
# serviceConfig = {
|
# serviceConfig = {
|
||||||
# Type = "simple";
|
# Type = "simple";
|
||||||
# ExecStart = "${lib.getExe pkgs.protonmail-bridge} --noninteractive --no-window";
|
# ExecStart = "${lib.getExe pkgs.protonmail-bridge} --noninteractive --no-window";
|
||||||
# };
|
# };
|
||||||
# };
|
# };
|
||||||
|
|
||||||
# Some programs need SUID wrappers, can be configured further or are
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
# started in user sessions.
|
# started in user sessions.
|
||||||
|
@ -214,7 +229,7 @@
|
||||||
# services.openssh.enable = true;
|
# services.openssh.enable = true;
|
||||||
|
|
||||||
# Open ports in the firewall.
|
# Open ports in the firewall.
|
||||||
networking.firewall.allowedTCPPorts = [
|
networking.firewall.allowedTCPPorts = [
|
||||||
43391 # used to forward minecraft traffic to minecraft.gabbie.blue:33991
|
43391 # used to forward minecraft traffic to minecraft.gabbie.blue:33991
|
||||||
4455 # used for OBS websocket
|
4455 # used for OBS websocket
|
||||||
7777 # used for Satisfactory Server
|
7777 # used for Satisfactory Server
|
||||||
|
|
|
@ -1,33 +1,49 @@
|
||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
modulesPath,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" ];
|
boot.initrd.availableKernelModules = [
|
||||||
|
"nvme"
|
||||||
|
"xhci_pci"
|
||||||
|
"thunderbolt"
|
||||||
|
"usb_storage"
|
||||||
|
"usbhid"
|
||||||
|
"sd_mod"
|
||||||
|
];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{ device = "/dev/disk/by-uuid/c5c7a251-2bd1-4c10-99fa-17069bc66161";
|
device = "/dev/disk/by-uuid/c5c7a251-2bd1-4c10-99fa-17069bc66161";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{ device = "/dev/disk/by-uuid/3650-CF80";
|
device = "/dev/disk/by-uuid/3650-CF80";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = [
|
||||||
};
|
"fmask=0077"
|
||||||
|
"dmask=0077"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
fileSystems."/home" =
|
fileSystems."/home" = {
|
||||||
{ device = "/dev/disk/by-uuid/7b70ea86-8c19-4089-ac1c-0fdcf24bfa8e";
|
device = "/dev/disk/by-uuid/7b70ea86-8c19-4089-ac1c-0fdcf24bfa8e";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
{config, ... }: {
|
{ config, ... }:
|
||||||
|
{
|
||||||
programs.honkers-railway-launcher.enable = true;
|
programs.honkers-railway-launcher.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
{ config, lib, pkgs, stablepkgs, ... }: {
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
stablepkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
# All packaged needed from nixos-unstable
|
# All packaged needed from nixos-unstable
|
||||||
environment.systemPackages =
|
environment.systemPackages =
|
||||||
(with pkgs; [
|
(with pkgs; [
|
||||||
neovim # nano is installed by default
|
neovim # nano is installed by default
|
||||||
wget
|
wget
|
||||||
|
@ -41,11 +48,11 @@
|
||||||
ardour
|
ardour
|
||||||
v4l-utils
|
v4l-utils
|
||||||
libreoffice
|
libreoffice
|
||||||
])
|
])
|
||||||
|
|
||||||
++
|
++
|
||||||
|
|
||||||
(with stablepkgs; [
|
(with stablepkgs; [
|
||||||
# librewolf
|
# librewolf
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
services.satisfactory = {
|
services.satisfactory = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{ config, ... }: {
|
{ config, ... }:
|
||||||
|
{
|
||||||
stylix = {
|
stylix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# base16Scheme = "${pkgs.base16-schemes}/share/themes/icy.yaml";
|
# base16Scheme = "${pkgs.base16-schemes}/share/themes/icy.yaml";
|
||||||
stylix.image = /home/blue/Pictures/wallpaper.png;
|
stylix.image = /home/blue/Pictures/wallpaper.png;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue