summaryrefslogtreecommitdiff
path: root/machines/x
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-02-29 22:04:27 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2024-02-29 22:04:27 +0530
commit743478f373a66f7b050030948824d722d6b2cc67 (patch)
tree07018801a29c1dce5e7876afb3845d8b20232e7e /machines/x
parentd4967ba5f47553bcfcc60fd5af2c4187d8cc448e (diff)
update
Diffstat (limited to 'machines/x')
-rw-r--r--machines/x/configuration.nix11
-rw-r--r--machines/x/home.nix24
2 files changed, 20 insertions, 15 deletions
diff --git a/machines/x/configuration.nix b/machines/x/configuration.nix
index 933239f..bd0a385 100644
--- a/machines/x/configuration.nix
+++ b/machines/x/configuration.nix
@@ -1,13 +1,15 @@
{ lib, inputs, pkgs, ... }:
-{
+let
+ tlauncher = (pkgs.callPackage ../../packages/tlauncher.nix {});
+in {
imports = [
./hardware-configuration.nix
inputs.home-manager.nixosModules.default
] ++ (map (path: ../../modules/${path}) [
"global.nix"
"compromyse.nix"
- "desktop.nix"
+ "plasma.nix"
"login.nix"
"fonts.nix"
"bluetooth.nix"
@@ -33,5 +35,10 @@
networking.hostName = "x";
+ environment.systemPackages = [tlauncher];
+
+ virtualisation.lxd.enable = true;
+
home-manager.users.compromyse = import ./home.nix;
+ programs.steam.enable = true;
}
diff --git a/machines/x/home.nix b/machines/x/home.nix
index 4ef6f48..bddd06c 100644
--- a/machines/x/home.nix
+++ b/machines/x/home.nix
@@ -19,8 +19,8 @@
unzip
zip
- cinnamon.nemo
- mate.eom
+ # cinnamon.nemo
+ # mate.eom
spotify
firefox
@@ -28,29 +28,27 @@
obs-studio
- pavucontrol
- blueman
- brillo
+ # pavucontrol
+ # blueman
+ # brillo
- wbg
+ # wbg
+
+ kcalc
ccls
+ rubocop
nodePackages.pyright
+ git-lfs
];
imports = (map (path: ../../config/${path}) [
- "themes.nix"
+ # "themes.nix"
"dotfiles.nix"
"git"
"nvim"
"alacritty"
- "dunst"
- "swaylock"
- "dwl.nix"
- "way-displays"
"bash.nix"
- "fuzzel"
- "waybar"
]);
home.stateVersion = "23.11";