mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
Commiting to save progress, currently broken
This commit is contained in:
parent
df843602be
commit
825fb34253
17
flake.lock
generated
17
flake.lock
generated
@ -536,6 +536,22 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nixos-hardware": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1769302137,
|
||||||
|
"narHash": "sha256-QEDtctEkOsbx8nlFh4yqPEOtr4tif6KTqWwJ37IM2ds=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixos-hardware",
|
||||||
|
"rev": "a351494b0e35fd7c0b7a1aae82f0afddf4907aa8",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "master",
|
||||||
|
"repo": "nixos-hardware",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1769461804,
|
"lastModified": 1769461804,
|
||||||
@ -644,6 +660,7 @@
|
|||||||
"hyprland": "hyprland",
|
"hyprland": "hyprland",
|
||||||
"nix-citizen": "nix-citizen",
|
"nix-citizen": "nix-citizen",
|
||||||
"nix-darwin": "nix-darwin",
|
"nix-darwin": "nix-darwin",
|
||||||
|
"nixos-hardware": "nixos-hardware",
|
||||||
"nixpkgs": "nixpkgs_3",
|
"nixpkgs": "nixpkgs_3",
|
||||||
"sops-nix": "sops-nix",
|
"sops-nix": "sops-nix",
|
||||||
"spicetify-nix": "spicetify-nix"
|
"spicetify-nix": "spicetify-nix"
|
||||||
|
|||||||
@ -4,7 +4,9 @@
|
|||||||
inputs = {
|
inputs = {
|
||||||
# NixPKGS unstable
|
# NixPKGS unstable
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
|
||||||
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||||
|
|
||||||
# Hyprland
|
# Hyprland
|
||||||
hyprland.url = "github:hyprwm/Hyprland";
|
hyprland.url = "github:hyprwm/Hyprland";
|
||||||
|
|
||||||
@ -47,6 +49,7 @@
|
|||||||
nixosConfigurations.framework = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.framework = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
modules = [
|
modules = [
|
||||||
|
inputs.nixos-hardware.nixosModules.framework-16-7040-amd
|
||||||
./hosts/framework/configuration.nix
|
./hosts/framework/configuration.nix
|
||||||
inputs.home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
|
|||||||
@ -1,12 +1,15 @@
|
|||||||
{ config, pkgs, inputs, ... }:
|
{ config, pkgs, inputs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
modules = import ../../modules;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
inputs.spicetify-nix.homeManagerModules.spicetify
|
inputs.spicetify-nix.homeManagerModules.spicetify
|
||||||
../../modules/home-manager/spicetify.nix
|
modules.hm.spicetify
|
||||||
#../../modules/home-manager/zed.nix
|
#../../modules/home-manager/zed.nix
|
||||||
../../modules/home-manager/shell.nix
|
modules.hm.shell
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -6,7 +6,7 @@ in
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../common/home.nix
|
../common/home.nix
|
||||||
modules.hm.hyprland.nix
|
modules.hm.hyprland
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|||||||
@ -7,8 +7,8 @@ in
|
|||||||
# Home Manager needs a bit of information about you and the paths it should
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
# manage.
|
# manage.
|
||||||
imports = [
|
imports = [
|
||||||
../common/home.nix
|
modules.common.home
|
||||||
../../modules/home-manager/hyprland.nix
|
modules.hm.hyprland
|
||||||
];
|
];
|
||||||
# This value determines the Home Manager release that your configuration is
|
# This value determines the Home Manager release that your configuration is
|
||||||
# compatible with. This helps avoid breakage when a new Home Manager release
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
||||||
|
|||||||
@ -1,7 +1,12 @@
|
|||||||
|
{pkgs, ...}:
|
||||||
|
|
||||||
|
let
|
||||||
|
modules = import ../../modules;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
#./hardware-configuration.nix
|
||||||
../common/modules.nix
|
modules.common.module
|
||||||
../../modules/nixos/xfce.nix # Desktop Enviroment
|
modules.nixos.xfce # Desktop Enviroment
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -7,8 +7,8 @@ in
|
|||||||
# Home Manager needs a bit of information about you and the paths it should
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
# manage.
|
# manage.
|
||||||
imports = [
|
imports = [
|
||||||
../common/home.nix
|
modules.common.home
|
||||||
modules.hm.hyprland.nix
|
modules.hm.hyprland
|
||||||
];
|
];
|
||||||
# This value determines the Home Manager release that your configuration is
|
# This value determines the Home Manager release that your configuration is
|
||||||
# compatible with. This helps avoid breakage when a new Home Manager release
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
||||||
|
|||||||
@ -1,12 +1,14 @@
|
|||||||
{ pkgs, inputs, ... }:
|
{ pkgs, inputs, ... }:
|
||||||
|
let
|
||||||
|
modules = import ../../modules;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
# This file is used to import all modules required by this setup.
|
# This file is used to import all modules required by this setup.
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
../common/modules.nix
|
modules.common.module
|
||||||
../../modules/nixos/secrets.nix # Sops
|
modules.nixos.secrets # Sops
|
||||||
# ../../modules/nixos/wireless.nix # For the wifi
|
# ../../modules/nixos/wireless.nix # For the wifi
|
||||||
../../modules/nixos/gaming/nvidia.nix # Nvidia (Drivers and Settings)
|
../../modules/nixos/gaming/nvidia.nix # Nvidia (Drivers and Settings)
|
||||||
../../modules/nixos/gaming/starCitizen.nix
|
../../modules/nixos/gaming/starCitizen.nix
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
pkgs.writeShellApplication {
|
pkgs.writeShellApplication {
|
||||||
name = "VolumeManager";
|
name = "VolumeManager";
|
||||||
runtinmeInputs = [
|
runtimeInputs = [
|
||||||
pkgs.wireplumber
|
pkgs.wireplumber
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user