Updates
This commit is contained in:
parent
37bd5705f3
commit
294182bbcc
9 changed files with 5 additions and 45 deletions
21
flake.lock
21
flake.lock
|
@ -114,26 +114,6 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"compose2nix": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1717354014,
|
||||
"narHash": "sha256-WwQo3TGnEbpp3tPqHHqqiXK3jXD9oykdhKaxrv9UzKs=",
|
||||
"owner": "aksiksi",
|
||||
"repo": "compose2nix",
|
||||
"rev": "3cc5f141667c1dd434570ab6cb2dbac5739edc52",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "aksiksi",
|
||||
"repo": "compose2nix",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"crane": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
|
@ -1676,7 +1656,6 @@
|
|||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"compose2nix": "compose2nix",
|
||||
"deploy-rs": "deploy-rs",
|
||||
"disko": "disko",
|
||||
"doom-emacs": "doom-emacs",
|
||||
|
|
|
@ -40,9 +40,6 @@
|
|||
# Manage Plasma desktop with Nix
|
||||
plasma-manager.url = "github:pjones/plasma-manager";
|
||||
plasma-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
# compose2nix - Convert docker-compose.yml files to nix syntax
|
||||
compose2nix.url = "github:aksiksi/compose2nix";
|
||||
compose2nix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
# Hyprland Flake
|
||||
hyprland.url = "github:hyprwm/Hyprland";
|
||||
# Steam Deck configs for NixOS
|
||||
|
@ -97,7 +94,7 @@
|
|||
nixos-linode-img = libx.mkMinImage { hostname = "nixos-linode-img"; format = "linode"; };
|
||||
nixos-rpi4-img = libx.mkImage { hostname = "nixos-rpi4-img"; format = "sd-aarch64"; system = "aarch64-linux"; };
|
||||
nixos-iso-console = libx.mkImage { hostname = "nixos-iso-console"; format = "iso"; };
|
||||
nixos-iso-desktop = libx.mkImage { hostname = "nixos-iso-desktop"; format = "iso"; desktop = "gnome"; unfree = true; };
|
||||
nixos-iso-desktop = libx.mkImage { hostname = "nixos-iso-desktop"; format = "iso"; desktop = "plasma6"; unfree = true; };
|
||||
};
|
||||
|
||||
# Checks for deploy-rs - Makes deploy-rs fail when system evaluations fail
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
docker-compose
|
||||
ctop
|
||||
inputs.compose2nix.packages.${system}.default
|
||||
];
|
||||
|
||||
# Add the docker telegraf listener
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
podman-compose
|
||||
podman-tui
|
||||
inputs.compose2nix.packages.${system}.default
|
||||
];
|
||||
|
||||
# Add the docker telegraf listener
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
./common/modules/networking.nix # Initial Networking configs
|
||||
./common/modules/nixos.nix # NixOS related items
|
||||
./common/modules/remote-builders.nix # Add remote builders
|
||||
./common/modules/hosts.nix # Adblockers
|
||||
# ./common/modules/hosts.nix # Adblockers
|
||||
|
||||
./users/${username}
|
||||
./hosts/${hostname}
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# Auto-generated using compose2nix v0.1.7.
|
||||
{ ... }: {
|
||||
services.cron = {
|
||||
enable = true;
|
||||
|
|
|
@ -46,19 +46,14 @@
|
|||
};
|
||||
|
||||
hardware = {
|
||||
opengl = {
|
||||
enable = true;
|
||||
driSupport32Bit = true;
|
||||
driSupport = true;
|
||||
};
|
||||
|
||||
graphics.enable = true;
|
||||
nvidia = {
|
||||
open = false;
|
||||
nvidiaSettings = true;
|
||||
modesetting.enable = true;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.production; # (installs 535)
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = [
|
||||
# deployments and development environments
|
||||
|
|
|
@ -41,14 +41,7 @@
|
|||
|
||||
# Set the networking hostname:
|
||||
networking.hostName = "nixos-framework";
|
||||
|
||||
hardware = {
|
||||
opengl = {
|
||||
enable = true;
|
||||
driSupport32Bit = true;
|
||||
driSupport = true;
|
||||
};
|
||||
};
|
||||
hardware.graphics.enable = true;
|
||||
|
||||
programs.gamemode = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
# Auto-generated using compose2nix v0.1.7.
|
||||
{ ... }: {
|
||||
services.cron = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue