Change configuration structure
This commit is contained in:
@@ -1,7 +0,0 @@
|
|||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
pods
|
|
||||||
zed-editor
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@@ -17,16 +17,19 @@
|
|||||||
# System configurations
|
# System configurations
|
||||||
os.keyboard.apple.enable = true;
|
os.keyboard.apple.enable = true;
|
||||||
|
|
||||||
|
# Flatpak configuration
|
||||||
|
os.flatpak.enable = true;
|
||||||
|
|
||||||
# Virtualisation Apps
|
# Virtualisation Apps
|
||||||
os.virtualisation.cuda.enable = true;
|
os.virtualisation.cuda.enable = true;
|
||||||
os.virtualisation.podman.enable = true;
|
os.virtualisation.podman.enable = true;
|
||||||
|
|
||||||
# Terminal
|
|
||||||
programs.ssh.enableAskPassword = false; # No-window git push fix
|
|
||||||
|
|
||||||
# Shells configurations
|
# Shells configurations
|
||||||
os.shells.gnome.enable = true;
|
os.shells.gnome.enable = true;
|
||||||
|
|
||||||
|
# Terminal
|
||||||
|
programs.ssh.enableAskPassword = false; # No-window git push fix
|
||||||
|
|
||||||
# System version
|
# System version
|
||||||
system.stateVersion = "25.11";
|
system.stateVersion = "25.11";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,10 @@
|
|||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
os.flatpak.enable = true;
|
|
||||||
services.flatpak.packages = [
|
services.flatpak.packages = [
|
||||||
"io.github.flattool.Warehouse"
|
"io.github.flattool.Warehouse"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
zed-editor
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
pods
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user