aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2023-12-05 08:54:59 +0000
committerAkshay <[email protected]>2023-12-05 08:54:59 +0000
commit95e363e81ee2f221ad5f72934cf1607c3e75bd35 (patch)
tree4ba43be590f8e22f3df1843fe5b083f79d953b64
parent6452d3840b78d619018aa305e718ebd2a642caf4 (diff)
use common font all overmyrtle
-rw-r--r--flake.lock20
-rw-r--r--font.nix2
-rw-r--r--home.nix1
-rw-r--r--hosts/myrtle/configuration.nix9
-rw-r--r--programs/bash.nix2
5 files changed, 20 insertions, 14 deletions
diff --git a/flake.lock b/flake.lock
index 9104578..1ea6df4 100644
--- a/flake.lock
+++ b/flake.lock
@@ -27,11 +27,11 @@
27 ] 27 ]
28 }, 28 },
29 "locked": { 29 "locked": {
30 "lastModified": 1694643239, 30 "lastModified": 1701433070,
31 "narHash": "sha256-pv2k/5FvyirDE8g4TNehzwZ0T4UOMMmqWSQnM/luRtE=", 31 "narHash": "sha256-Gf9JStfENaUQ7YWFz3V7x/srIwr4nlnVteqaAxtwpgM=",
32 "owner": "nix-community", 32 "owner": "nix-community",
33 "repo": "home-manager", 33 "repo": "home-manager",
34 "rev": "d9b88b43524db1591fb3d9410a21428198d75d49", 34 "rev": "4a8545f5e737a6338814a4676dc8e18c7f43fc57",
35 "type": "github" 35 "type": "github"
36 }, 36 },
37 "original": { 37 "original": {
@@ -57,11 +57,11 @@
57 }, 57 },
58 "nixpkgs": { 58 "nixpkgs": {
59 "locked": { 59 "locked": {
60 "lastModified": 1694062546, 60 "lastModified": 1701141680,
61 "narHash": "sha256-PiGI4f2BGnZcedP6slLjCLGLRLXPa9+ogGGgVPfGxys=", 61 "narHash": "sha256-qaPcwKI0RR6mxfn4sMrHEjjDl6VCEPUTRZhN+OFB6zg=",
62 "owner": "NixOS", 62 "owner": "NixOS",
63 "repo": "nixpkgs", 63 "repo": "nixpkgs",
64 "rev": "b200e0df08f80c32974a6108ce431d8a8a5e6547", 64 "rev": "4469e22700c47792f93daa882786d36f9bf8bc2a",
65 "type": "github" 65 "type": "github"
66 }, 66 },
67 "original": { 67 "original": {
@@ -78,11 +78,11 @@
78 ] 78 ]
79 }, 79 },
80 "locked": { 80 "locked": {
81 "lastModified": 1694244899, 81 "lastModified": 1701510523,
82 "narHash": "sha256-+Nv7HVG/s2Jers3+XiBqYzg+X+MpDY+j5Rucyfgoib0=", 82 "narHash": "sha256-uf0JCa+PP/aM77icihT79hew1/TTcMJV6AoIfmuLABM=",
83 "ref": "refs/heads/master", 83 "ref": "refs/heads/master",
84 "rev": "39c3e7baf034bdbecc29f5f441d8dde634833b52", 84 "rev": "9450828084f42d3f1eb261c00820cfd2bf8b819b",
85 "revCount": 6, 85 "revCount": 7,
86 "type": "git", 86 "type": "git",
87 "url": "https://git.peppe.rs/cli/prompt" 87 "url": "https://git.peppe.rs/cli/prompt"
88 }, 88 },
diff --git a/font.nix b/font.nix
index 74afcdd..02425b1 100644
--- a/font.nix
+++ b/font.nix
@@ -1,3 +1,3 @@
1{ 1{
2 name = "Nerd Input"; 2 name = "CommitMono";
3} 3}
diff --git a/home.nix b/home.nix
index 933336c..7f73e46 100644
--- a/home.nix
+++ b/home.nix
@@ -51,6 +51,7 @@
51 killall 51 killall
52 httpie 52 httpie
53 thunderbird 53 thunderbird
54 calibre
54 55
55 # gaming 56 # gaming
56 mgba 57 mgba
diff --git a/hosts/myrtle/configuration.nix b/hosts/myrtle/configuration.nix
index 82eb763..09da894 100644
--- a/hosts/myrtle/configuration.nix
+++ b/hosts/myrtle/configuration.nix
@@ -27,7 +27,7 @@
27 27
28 28
29 i18n.defaultLocale = "en_US.UTF-8"; 29 i18n.defaultLocale = "en_US.UTF-8";
30 time.timeZone = "Asia/Kolkata"; 30 time.timeZone = "Europe/London";
31 31
32 nixpkgs.config = { 32 nixpkgs.config = {
33 "2bwm".patches = [ 33 "2bwm".patches = [
@@ -123,7 +123,7 @@
123 }; 123 };
124 sensor.iio.enable = true; # enable screen autorotate 124 sensor.iio.enable = true; # enable screen autorotate
125 asus.battery = { 125 asus.battery = {
126 chargeUpto = 80; 126 chargeUpto = 100;
127 }; 127 };
128 }; 128 };
129 129
@@ -190,6 +190,11 @@
190 group = "signald"; 190 group = "signald";
191 }; 191 };
192 192
193 udisks2 = {
194 enable = true;
195 mountOnMedia = true;
196 };
197
193 }; 198 };
194 199
195 systemd.sleep.extraConfig = '' 200 systemd.sleep.extraConfig = ''
diff --git a/programs/bash.nix b/programs/bash.nix
index bff2eb9..f6f8de9 100644
--- a/programs/bash.nix
+++ b/programs/bash.nix
@@ -72,7 +72,7 @@
72 72
73 initExtra = '' 73 initExtra = ''
74 export PATH=$PATH:"$HOME/scripts" 74 export PATH=$PATH:"$HOME/scripts"
75 export PROMPT_COMMAND="tmux refresh-client -S"; 75 export PROMPT_COMMAND="tmux refresh-client -S > /dev/null";
76 export PS1="\n\001\e[0;36m\002λ\001\e[0m\002 "; 76 export PS1="\n\001\e[0;36m\002λ\001\e[0m\002 ";
77 export PS2="> "; 77 export PS2="> ";
78 78